diff --git a/Plasma/Plasma_Widgets/User/io.gitgud.wackyideas.SevenStart/contents/ui/FloatingOrb.qml b/Plasma/Plasma_Widgets/User/io.gitgud.wackyideas.SevenStart/contents/ui/FloatingOrb.qml index 562cb24..c7412ca 100644 --- a/Plasma/Plasma_Widgets/User/io.gitgud.wackyideas.SevenStart/contents/ui/FloatingOrb.qml +++ b/Plasma/Plasma_Widgets/User/io.gitgud.wackyideas.SevenStart/contents/ui/FloatingOrb.qml @@ -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(); } } }