mirror of
https://github.com/git/git.git
synced 2025-03-28 04:58:50 +00:00
git-gui: fetch/prune all entry only for more than one entry
In case there is only one remote a fetch/prune all entry is redundant. Signed-off-by: Heiko Voigt <hvoigt@hvoigt.net> Tested-by: Jens Lehmann <Jens.Lehmann@web.de> Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
This commit is contained in:
parent
ba44692a2e
commit
4bfa2502f7
@ -237,13 +237,13 @@ proc update_all_remotes_menu_entry {} {
|
||||
|
||||
set have_remote 0
|
||||
foreach r $all_remotes {
|
||||
set have_remote 1
|
||||
incr have_remote
|
||||
}
|
||||
|
||||
set remote_m .mbar.remote
|
||||
set fetch_m $remote_m.fetch
|
||||
set prune_m $remote_m.prune
|
||||
if {$have_remote} {
|
||||
if {$have_remote > 1} {
|
||||
make_sure_remote_submenues_exist $remote_m
|
||||
set index [expr {[$fetch_m type 0] eq "tearoff" ? 1 : 0}]
|
||||
if {[$fetch_m entrycget $index -label] ne "All"} {
|
||||
|
Loading…
x
Reference in New Issue
Block a user