diff --git a/telldus-gui/Plugins/Sensors/main.qml b/telldus-gui/Plugins/Sensors/main.qml index 599a1ae1..41ecb0ac 100644 --- a/telldus-gui/Plugins/Sensors/main.qml +++ b/telldus-gui/Plugins/Sensors/main.qml @@ -1,17 +1,21 @@ import Qt 4.7 +import QtDesktop 0.1 Item { id: main state: "VIEW" - Flickable { + ScrollArea { + id: scrollArea anchors.fill: parent + frame: false contentHeight: sensorList.height + contentWidth: sensorList.width SensorList { - width: parent.width id: sensorList + width: main.width-scrollArea.verticalScrollBar.width } } }