Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(975)

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/NewApplicationCreationPage.java

Issue 10883022: Bug/feature request fix for bug 3677. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase to master after the weekend Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/ProjectMessages.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/NewApplicationCreationPage.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/NewApplicationCreationPage.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/NewApplicationCreationPage.java
index d2a3b2d5f5f50f9041c7973303c9381ddd656cde..799da728e4258e5cd386d971d08bc6e87c7957aa 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/NewApplicationCreationPage.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/NewApplicationCreationPage.java
@@ -96,6 +96,7 @@ public class NewApplicationCreationPage extends WizardPage {
projectNameField = new Text(container, SWT.BORDER);
projectNameField.setText(""); //$NON-NLS-1$
+ projectNameField.setToolTipText(ProjectMessages.NewApplicationWizardPage_project_name_tooltip);
projectNameField.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 2, 1));
projectNameField.addFocusListener(new FocusAdapter() {
@Override
@@ -115,6 +116,7 @@ public class NewApplicationCreationPage extends WizardPage {
projectLocationField = new Text(container, SWT.BORDER);
projectLocationField.setText(defaultLocation);
+ projectLocationField.setToolTipText(ProjectMessages.NewApplicationWizardPage_directory_tooltip);
projectLocationField.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 1, 1));
projectLocationField.addFocusListener(new FocusAdapter() {
@Override
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/projects/ProjectMessages.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698