From e0e0a6c64c5e7fffddc7ab8ef5d17626cf689e47 Mon Sep 17 00:00:00 2001 From: Bert Wesarg Date: Thu, 13 Oct 2011 15:48:12 +0200 Subject: [PATCH] git-gui: search and linenumber input are mutual exclusive in the blame view It was possible to open the search input (Ctrl+S) and the goto-line input (Ctrl+G) at the same time. Prevent this. Signed-off-by: Bert Wesarg Signed-off-by: Pat Thoyts --- lib/blame.tcl | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/lib/blame.tcl b/lib/blame.tcl index 2099776..691941e 100644 --- a/lib/blame.tcl +++ b/lib/blame.tcl @@ -280,11 +280,11 @@ constructor new {i_commit i_path i_jump} { $w.ctxm add command \ -label [mc "Find Text..."] \ -accelerator F7 \ - -command [list searchbar::show $finder] + -command [cb _show_finder] $w.ctxm add command \ -label [mc "Goto Line..."] \ -accelerator "Ctrl-G" \ - -command [list linebar::show $gotoline] + -command [cb _show_linebar] menu $w.ctxm.enc build_encoding_menu $w.ctxm.enc [cb _setencoding] $w.ctxm add cascade \ @@ -351,13 +351,13 @@ constructor new {i_commit i_path i_jump} { bind $w_cviewer "[list focus $w_file];break" bind $w_cviewer [list focus $w_cviewer] bind $w_file [cb _focus_search $w_file] - bind $top [list searchbar::show $finder] - bind $top [list searchbar::show $finder] - bind $top [list searchbar::show $finder] + bind $top [cb _show_finder] + bind $top [cb _show_finder] + bind $top [cb _show_finder] bind $top [list searchbar::hide $finder] bind $top [list searchbar::find_next $finder] bind $top [list searchbar::find_prev $finder] - bind $top [list linebar::show $gotoline] + bind $top [cb _show_linebar] catch { bind $top [list searchbar::find_prev $finder] } grid configure $w.header -sticky ew @@ -1349,4 +1349,14 @@ method _resize {new_height} { set old_height $new_height } +method _show_finder {} { + linebar::hide $gotoline + searchbar::show $finder +} + +method _show_linebar {} { + searchbar::hide $finder + linebar::show $gotoline +} + } -- 2.11.4.GIT