diff options
| author | Kevin Sawicki | 2011-04-21 17:30:01 +0000 |
|---|---|---|
| committer | Kevin Sawicki | 2011-04-21 17:56:44 +0000 |
| commit | fc1cc520bb0fa3b9ece79a767f91e4f98fd2c162 (patch) | |
| tree | 0973f909339cfefd3f2208e81df0ab99b7a277d9 | |
| parent | 3fa9329e38292a98178f99b704fa8d59acd8c0ea (diff) | |
| download | egit-fc1cc520bb0fa3b9ece79a767f91e4f98fd2c162.tar.gz egit-fc1cc520bb0fa3b9ece79a767f91e4f98fd2c162.tar.xz egit-fc1cc520bb0fa3b9ece79a767f91e4f98fd2c162.zip | |
Don't show rebase menus if selection is empty.
Bug: 343574
Change-Id: I33abff77b52a1314fca185defdbf4d064f84219f
Signed-off-by: Kevin Sawicki <kevin@github.com>
| -rw-r--r-- | org.eclipse.egit.ui/plugin.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/org.eclipse.egit.ui/plugin.xml b/org.eclipse.egit.ui/plugin.xml index 45744736e1..166ea1cdb2 100644 --- a/org.eclipse.egit.ui/plugin.xml +++ b/org.eclipse.egit.ui/plugin.xml @@ -2430,7 +2430,8 @@ label="%RebaseWithDialog_label"> <visibleWhen checkEnabled="false"> <and> - <iterate> + <iterate + ifEmpty="false"> <and> <adapt type="org.eclipse.core.resources.IProject"> @@ -2454,7 +2455,8 @@ commandId="org.eclipse.egit.ui.ContinueRebase" style="push" /> <visibleWhen checkEnabled="false"> <and> - <iterate> + <iterate + ifEmpty="false"> <and> <adapt type="org.eclipse.core.resources.IProject"> |
