diff options
author | Väinö Järvelä <v@pp.inet.fi> | 2007-08-03 12:27:39 +0300 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-08-04 02:47:30 -0400 |
commit | 51b8c5021a19195e0f138832b081a356a2247bca (patch) | |
tree | 7d5d61874aa784fb497a629cb152c93d39deed53 | |
parent | a13ee29b975d3a9a012983309e842d942b2bbd44 (diff) | |
download | git-51b8c5021a19195e0f138832b081a356a2247bca.tar.gz |
git-gui: Added support for OS X right clickgitgui-0.8.1
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ä <v@pp.inet.fi>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-x | git-gui.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/git-gui.sh b/git-gui.sh index 2c7eb3c25c..29a790e481 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -1348,6 +1348,9 @@ unset i proc bind_button3 {w cmd} { bind $w <Any-Button-3> $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 <Any-Button-2> $cmd bind $w <Control-Button-1> $cmd } } |