mirror of
https://github.com/moonlight-stream/moonlight-qt.git
synced 2026-06-17 22:23:31 +00:00
Add long press action on PC view for touchscreens
This commit is contained in:
+8
-4
@@ -186,10 +186,7 @@ GridView {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
onPressAndHold: {
|
||||||
anchors.fill: parent
|
|
||||||
acceptedButtons: Qt.RightButton;
|
|
||||||
onClicked: {
|
|
||||||
if (!model.addPc) {
|
if (!model.addPc) {
|
||||||
// popup() ensures the menu appears under the mouse cursor
|
// popup() ensures the menu appears under the mouse cursor
|
||||||
if (pcContextMenu.popup) {
|
if (pcContextMenu.popup) {
|
||||||
@@ -201,6 +198,13 @@ GridView {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
acceptedButtons: Qt.RightButton;
|
||||||
|
onClicked: {
|
||||||
|
parent.onPressAndHold()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Keys.onMenuPressed: {
|
Keys.onMenuPressed: {
|
||||||
|
|||||||
Reference in New Issue
Block a user