diff options
| author | Johannes Sixt <j6t@kdbg.org> | 2025-08-26 19:22:08 +0200 |
|---|---|---|
| committer | Johannes Sixt <j6t@kdbg.org> | 2025-08-26 19:22:08 +0200 |
| commit | be1829c0fd55ae2f7851c0c610c716cc5154dc5c (patch) | |
| tree | a43f1df8d585cde3a4779b8ca6b2c58de245d874 | |
| parent | Merge branch 'docglobs' of github.com:ilyagr/gitk (diff) | |
| parent | gitk: use <Button-3> for ctx menus on macOS with Tcl 8.7+ (diff) | |
| download | git-be1829c0fd55ae2f7851c0c610c716cc5154dc5c.tar.gz git-be1829c0fd55ae2f7851c0c610c716cc5154dc5c.zip | |
Merge branch 'aqua-ctxbut' of github.com:ZhongRuoyu/gitk
* 'aqua-ctxbut' of github.com:ZhongRuoyu/gitk:
gitk: use <Button-3> for ctx menus on macOS with Tcl 8.7+
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
| -rwxr-xr-x | gitk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12596,7 +12596,7 @@ set foundbgcolor yellow set currentsearchhitbgcolor orange # button for popping up context menus -if {[tk windowingsystem] eq "aqua"} { +if {[tk windowingsystem] eq "aqua" && [package vcompare $::tcl_version 8.7] < 0} { set ctxbut <Button-2> } else { set ctxbut <Button-3> |
