aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2008-01-11 12:39:33 +0000
committerPaul Mackerras <paulus@samba.org>2008-01-14 08:55:04 +1100
commit646f3a149d1cc8a6511a433cd2a51987d7582463 (patch)
treee1e9ac5988f10df8f98ed28a1911e47e8e4c05d8
parent7d8856d091d3fd098643acb6157dfed376eddaea (diff)
downloadgit-646f3a149d1cc8a6511a433cd2a51987d7582463.tar.gz
git-646f3a149d1cc8a6511a433cd2a51987d7582463.tar.xz
[PATCH] gitk: make Ctrl "+" really increase the font size
Only Ctrl "=" was bound to increase the font size, probably because English keyboards have the plus on the same key as the equal sign. However, not the whole world is English, and at least with some other keyboard layouts, Ctrl "+" did not work as documented. Noticed by Stephan Hennig. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> Signed-off-by: Paul Mackerras <paulus@samba.org>
-rwxr-xr-xgitk1
1 files changed, 1 insertions, 0 deletions
diff --git a/gitk b/gitk
index b3cb8e8b7..5560e4dc5 100755
--- a/gitk
+++ b/gitk
@@ -996,6 +996,7 @@ proc makewindow {} {
bind . <$M1B-r> dosearchback
bind . <$M1B-s> dosearch
bind . <$M1B-equal> {incrfont 1}
+ bind . <$M1B-plus> {incrfont 1}
bind . <$M1B-KP_Add> {incrfont 1}
bind . <$M1B-minus> {incrfont -1}
bind . <$M1B-KP_Subtract> {incrfont -1}