diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-01-24 06:37:12 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-24 06:37:12 +0100 |
commit | cab31fa076253fcfafa7572c24e40f12a1e09ae3 (patch) | |
tree | 00d6cf078f517f759499c5e44799682377ace1b9 /git-gui/lib | |
parent | git-commit: exit non-zero if we fail to commit the index (diff) | |
parent | git-gui: Correctly cleanup msgfmt '1 message untranslated' output (diff) | |
download | git-cab31fa076253fcfafa7572c24e40f12a1e09ae3.tar.xz git-cab31fa076253fcfafa7572c24e40f12a1e09ae3.zip |
Merge git://repo.or.cz/git-gui
* git://repo.or.cz/git-gui:
git-gui: Correctly cleanup msgfmt '1 message untranslated' output
git-gui: Make the statistics of po2msg match those of msgfmt
git-gui: Fallback to Tcl based po2msg.sh if msgfmt isn't available
git-gui: Work around random missing scrollbar in revision list
Diffstat (limited to 'git-gui/lib')
-rw-r--r-- | git-gui/lib/choose_rev.tcl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-gui/lib/choose_rev.tcl b/git-gui/lib/choose_rev.tcl index a063c5bc49..c8821c1463 100644 --- a/git-gui/lib/choose_rev.tcl +++ b/git-gui/lib/choose_rev.tcl @@ -451,7 +451,8 @@ method _sb_set {sb orient first last} { focus $old_focus } } - $sb set $first $last + + catch {$sb set $first $last} } method _show_tooltip {pos} { |