fix: remove propagateComposedEvents and fix plugin author (#50, #51)

- TailscaleWidget.qml: remove propagateComposedEvents from right-click MouseArea
- plugin.json: clean up author string
This commit is contained in:
Vybe (Coding Agent) 2026-05-21 10:13:22 +00:00
parent da4d566f0c
commit afdcba9d4c

View file

@ -304,14 +304,9 @@ PluginComponent {
} }
} }
// propagateComposedEvents: true so that right-clicks both trigger our context menu
// *and* bubble to any parent MouseArea (e.g. for shell-level drag handling).
// Documented because the default (false) is far more common and this choice
// frequently surprises future maintainers.
MouseArea { MouseArea {
anchors.fill: parent anchors.fill: parent
acceptedButtons: Qt.RightButton acceptedButtons: Qt.RightButton
propagateComposedEvents: true
onClicked: { onClicked: {
root.toggleTailscale() root.toggleTailscale()
} }