1
0
mirror of https://github.com/git/git.git synced 2024-10-21 06:59:20 +02: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:
Heiko Voigt 2011-02-22 20:28:36 +01:00 committed by Pat Thoyts
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"} {