From 0d381751bf834d9ec04cd130728e1a096c158e01 Mon Sep 17 00:00:00 2001 From: vybe Date: Thu, 21 May 2026 10:13:22 +0000 Subject: [PATCH] fix: remove propagateComposedEvents and fix plugin author (#50, #51) - TailscaleWidget.qml: remove propagateComposedEvents from right-click MouseArea - plugin.json: clean up author string --- tailscalectl/TailscaleWidget.qml | 5 ----- tailscalectl/plugin.json | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/tailscalectl/TailscaleWidget.qml b/tailscalectl/TailscaleWidget.qml index 5b648a8..1f0ff07 100644 --- a/tailscalectl/TailscaleWidget.qml +++ b/tailscalectl/TailscaleWidget.qml @@ -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 { anchors.fill: parent acceptedButtons: Qt.RightButton - propagateComposedEvents: true onClicked: { root.toggleTailscale() } diff --git a/tailscalectl/plugin.json b/tailscalectl/plugin.json index f0885d1..6d9280b 100644 --- a/tailscalectl/plugin.json +++ b/tailscalectl/plugin.json @@ -3,7 +3,7 @@ "name": "Tailscale", "description": "Tailscale status and controls on the Dank Bar", "version": "0.1.0", - "author": "John Morris & Vybe (AI Slop... er... Coding Assistant)", + "author": "John Morris", "icon": "vpn_key", "type": "widget", "component": "./TailscaleWidget.qml",