diff options
author | Beat Bolli <dev+git@drbeat.li> | 2015-09-30 21:50:11 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2015-10-30 20:38:11 +1100 |
commit | 28de56856a62a459cfb2276e517bac5af9147ab2 (patch) | |
tree | ac4f8f7f2cf8fd406665351b7f30e8c9c7369413 | |
parent | d99b4b0de27a2bd654a40353b65883e368da6d06 (diff) | |
download | git-28de56856a62a459cfb2276e517bac5af9147ab2.tar.gz git-28de56856a62a459cfb2276e517bac5af9147ab2.tar.xz |
gitk: Add missing accelerators
In d99b4b0de27a ("gitk: Accelerators for the main menu", 2015-09-09),
accelerators were added to allow efficient keyboard navigation. One
instance of the strings "Edit view..." and "Delete view" were left
without the ampersand.
Add the missing ampersand characters to unbreak our international
users.
Signed-off-by: Beat Bolli <dev+git@drbeat.li>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rwxr-xr-x | gitk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12452,8 +12452,8 @@ if {$cmdline_files ne {} || $revtreeargs ne {} || $revtreeargscmd ne {}} { set viewchanged(1) 0 set vdatemode(1) 0 addviewmenu 1 - .bar.view entryconf [mca "Edit view..."] -state normal - .bar.view entryconf [mca "Delete view"] -state normal + .bar.view entryconf [mca "&Edit view..."] -state normal + .bar.view entryconf [mca "&Delete view"] -state normal } if {[info exists permviews]} { |