From 720e8960a891b366f5161dbe8cb106916cff403e Mon Sep 17 00:00:00 2001 From: helinyun98 Date: Sun, 3 May 2026 11:57:34 +0800 Subject: [PATCH] Add ButtonRelease-3 binding for macOS right-click --- Scripts/plistwindow.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Scripts/plistwindow.py b/Scripts/plistwindow.py index 090e4225..c42af240 100644 --- a/Scripts/plistwindow.py +++ b/Scripts/plistwindow.py @@ -605,6 +605,7 @@ def __init__(self, controller, root, **kw): # Bind right click if str(sys.platform) == "darwin": self._tree.bind("", self.popup) # ButtonRelease-2 on mac + self._tree.bind("", self.popup) # ButtonRelease-3 on mac self._tree.bind("", self.popup) # Ctrl+Left Click on mac else: self._tree.bind("", self.popup)