Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Spungin2014-06-17 03:52:51 +0000
committerSteven Spungin2014-06-17 03:52:51 +0000
commitadc3d278629de4fd28ca6ac8292f792dac5d467d (patch)
treec838d6fba600aa7e0338b36ac7e59f960afacdee
parent439d68429a7dad341a55be13d6989e312b0126dc (diff)
downloadeclipse.platform.ui.tools-adc3d278629de4fd28ca6ac8292f792dac5d467d.tar.gz
eclipse.platform.ui.tools-adc3d278629de4fd28ca6ac8292f792dac5d467d.tar.xz
eclipse.platform.ui.tools-adc3d278629de4fd28ca6ac8292f792dac5d467d.zip
Bug 437569 - [nonreferenced resource dialog] Install location text box
should not have value selected Change-Id: I7dace84c9916e3f5895d3f90e5fcbb21dda7241e
-rw-r--r--bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/resourcelocator/dialogs/NonReferencedActionPage.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/resourcelocator/dialogs/NonReferencedActionPage.java b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/resourcelocator/dialogs/NonReferencedActionPage.java
index d62536d1..ba15ca37 100644
--- a/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/resourcelocator/dialogs/NonReferencedActionPage.java
+++ b/bundles/org.eclipse.e4.tools.emf.ui/src/org/eclipse/e4/tools/emf/ui/internal/common/resourcelocator/dialogs/NonReferencedActionPage.java
@@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * Steven Spungin <steven@spungin.tv> - initial API and implementation
+ * Steven Spungin <steven@spungin.tv> - initial API and implementation, Bug 437569
*******************************************************************************/
package org.eclipse.e4.tools.emf.ui.internal.common.resourcelocator.dialogs;
@@ -385,6 +385,7 @@ public class NonReferencedActionPage extends WizardPage implements IWizardPage {
defaultButton.notifyListeners(SWT.Selection, new Event());
}
+ comp.setFocus();
setControl(comp);
}

Back to the top