Removed custom context menu from SevenStart.

このコミットが含まれているのは:
wackyideas 2023-09-27 19:57:18 +02:00
コミット f8b1438847
1個のファイルの変更2行の追加7行の削除

ファイルの表示

@ -87,14 +87,9 @@ Item {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
acceptedButtons: Qt.LeftButton | Qt.RightButton
acceptedButtons: Qt.LeftButton
onClicked: {
if(mouse.button == Qt.RightButton) {
var pos = plasmoid.mapToGlobal(mouse.x, mouse.y);
createContextMenu(pos);
} else {
root.showMenu();
}
root.showMenu();
}
}
}