Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/PushCommand.java')
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/PushCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/PushCommand.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/PushCommand.java
index e580af1503..8bc5c32777 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/PushCommand.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/internal/repository/tree/command/PushCommand.java
@@ -29,7 +29,7 @@ public class PushCommand extends RepositoriesViewCommandHandler<RepositoryNode>
try {
WizardDialog dlg = new WizardDialog(getShell(event),
new PushWizard(node.getRepository()));
- dlg.setHelpAvailable(false);
+ dlg.setHelpAvailable(true);
dlg.open();
} catch (URISyntaxException e1) {
Activator.handleError(e1.getMessage(), e1, true);

Back to the top