https://bugs.kde.org/show_bug.cgi?id=352986

--- Comment #5 from Kai Uwe Broulik <k...@privat.broulik.de> ---
Ha! I found it!

In the AppletConfiguration QML there's the following code:

    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
        }
    }

Not sure we can do a lot about this in a sense of following the widget theme
settings and everything :/ Perhaps we could make a wrapper that works fine for
Breeze and uses X window resize mode and everything but I don't know whether
it's worth it.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to