From: Väinö Järvelä Date: Fri, 3 Aug 2007 09:27:39 +0000 (+0300) Subject: git-gui: Added support for OS X right click X-Git-Tag: gitgui-0.8.1^0 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=51b8c5021a19195e0f138832b081a356a2247bca;p=git.git git-gui: Added support for OS X right click OS X sends Button-2 on a "real" right click, such as with a three button mouse, or by using the two-finger trackpad click. Signed-off-by: Väinö Järvelä Signed-off-by: Shawn O. Pearce --- diff --git a/git-gui.sh b/git-gui.sh index 2c7eb3c25..29a790e48 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -1348,6 +1348,9 @@ unset i proc bind_button3 {w cmd} { bind $w $cmd if {[is_MacOSX]} { + # Mac OS X sends Button-2 on right click through three-button mouse, + # or through trackpad right-clicking (two-finger touch + click). + bind $w $cmd bind $w $cmd } }