diff --git a/desktoppackage/contents/configuration/AppletConfiguration.qml b/desktoppackage/contents/configuration/AppletConfiguration.qml --- a/desktoppackage/contents/configuration/AppletConfiguration.qml +++ b/desktoppackage/contents/configuration/AppletConfiguration.qml @@ -24,7 +24,6 @@ import org.kde.plasma.core 2.1 as PlasmaCore import org.kde.plasma.configuration 2.0 -import org.kde.kquickcontrolsaddons 2.0 //TODO: all of this will be done with desktop components @@ -106,22 +105,6 @@ //BEGIN UI components SystemPalette {id: syspal} - MouseEventListener { - anchors.fill: parent - property int oldX - property int oldY - onPressed: { - oldX = mouse.screenX - oldY = mouse.screenY - } - onPositionChanged: { - configDialog.y += mouse.screenY - oldY - configDialog.x += mouse.screenX - oldX - oldX = mouse.screenX - oldY = mouse.screenY - } - } - MessageDialog { id: messageDialog icon: StandardIcon.Warning