Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Thun2010-12-02 09:11:54 +0000
committerMatthias Sohn2010-12-02 13:45:40 +0000
commitcc8c842bd630dadc3670469fba283cd8f0b0e803 (patch)
tree312f256038be76c00cdf2bc397613d3e68d7992e /org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/ConfigureFetchCommand.java
parent833f678b98cd4740dce486fcaccf74c1508e5271 (diff)
downloadegit-cc8c842bd630dadc3670469fba283cd8f0b0e803.tar.gz
egit-cc8c842bd630dadc3670469fba283cd8f0b0e803.tar.xz
egit-cc8c842bd630dadc3670469fba283cd8f0b0e803.zip
Remove help button (? icon) from wizards
Most EGit wizards showed a help button that was unusable, i.e. did not link to documentation. This patch removes the help buttons. Change-Id: I425b1698b48dcc180e0e3967038543c2981e3394 Signed-off-by: Philipp Thun <philipp.thun@sap.com> Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/ConfigureFetchCommand.java')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/ConfigureFetchCommand.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/ConfigureFetchCommand.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/ConfigureFetchCommand.java
index b1669137d4..53720666d2 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/ConfigureFetchCommand.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/ConfigureFetchCommand.java
@@ -37,6 +37,7 @@ public class ConfigureFetchCommand extends
WizardDialog dlg = new WizardDialog(
getShell(event), new ConfigureRemoteWizard(
selectedNode.getRepository(), configName, false));
+ dlg.setHelpAvailable(false);
dlg.open();
return null;

Back to the top