Author: max.andersen(a)jboss.com
Date: 2012-04-26 05:28:38 -0400 (Thu, 26 Apr 2012)
New Revision: 40510
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java
Log:
JBIDE-10426 browse button for git destination is now init to where it comes from
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java
===================================================================
---
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java 2012-04-26
07:34:22 UTC (rev 40509)
+++
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/GitCloningSettingsWizardPage.java 2012-04-26
09:28:38 UTC (rev 40510)
@@ -194,7 +194,9 @@
@Override
public void widgetSelected(SelectionEvent e) {
DirectoryDialog dialog = new DirectoryDialog(getShell());
- dialog.setMessage("Choose the location to store your repository clone
to...");
+ dialog.setText("Git clone location");
+ dialog.setMessage("Choose the location for git clone...");
+ dialog.setFilterPath(pageModel.getRepositoryPath());
String repositoryPath = dialog.open();
if (repositoryPath != null) {
pageModel.setRepositoryPath(repositoryPath);
Show replies by date