mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
mobile view: draggable window
This commit is contained in:
parent
cd46edb23f
commit
030ff0994d
1 changed files with 19 additions and 0 deletions
19
main.qml
19
main.qml
|
@ -1295,6 +1295,25 @@ ApplicationWindow {
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
height: visible? 65 * scaleRatio : 0
|
height: visible? 65 * scaleRatio : 0
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
enabled: persistentSettings.customDecorations
|
||||||
|
property var previousPosition
|
||||||
|
anchors.fill: parent
|
||||||
|
propagateComposedEvents: true
|
||||||
|
onPressed: previousPosition = globalCursor.getPosition()
|
||||||
|
onPositionChanged: {
|
||||||
|
if (pressedButtons == Qt.LeftButton) {
|
||||||
|
var pos = globalCursor.getPosition()
|
||||||
|
var dx = pos.x - previousPosition.x
|
||||||
|
var dy = pos.y - previousPosition.y
|
||||||
|
|
||||||
|
appWindow.x += dx
|
||||||
|
appWindow.y += dy
|
||||||
|
previousPosition = pos
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
LeftPanel {
|
LeftPanel {
|
||||||
|
|
Loading…
Reference in a new issue