diff --git a/qml/FullscreenFrame.qml b/qml/FullscreenFrame.qml index a38fe8be..2130b90d 100644 --- a/qml/FullscreenFrame.qml +++ b/qml/FullscreenFrame.qml @@ -340,6 +340,17 @@ Control { folderId: 0 } + MouseArea { + anchors.fill: parent + acceptedButtons: Qt.RightButton + onClicked: { + // FIXME: prevent the bug:https://bugreports.qt.io/browse/QTBUG-125139; + if (mouse.button === Qt.RightButton) { + mouse.accepted = false; + } + } + } + GridViewContainer { id: gridViewContainer objectName: "gridViewContainer"