Author: fbricon
Date: 2011-07-20 16:11:49 -0400 (Wed, 20 Jul 2011)
New Revision: 33082
Modified:
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/profiles/SelectProfilesDialog.java
Log:
JBIDE-8969 : changed the selected profiles widget foreground color to grey, added a
tooltip to indicate read-only-ness
Modified:
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/profiles/SelectProfilesDialog.java
===================================================================
---
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/profiles/SelectProfilesDialog.java 2011-07-20
20:05:45 UTC (rev 33081)
+++
trunk/maven/plugins/org.jboss.tools.maven.ui/src/org/jboss/tools/maven/ui/internal/profiles/SelectProfilesDialog.java 2011-07-20
20:11:49 UTC (rev 33082)
@@ -130,8 +130,9 @@
profilesText = new Text(container, SWT.BORDER);
profilesText.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false, 2, 1));
- profilesText.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE));
+ profilesText.setForeground(Display.getCurrent().getSystemColor(SWT.COLOR_DARK_GRAY));
profilesText.setEditable(false);
+ profilesText.setToolTipText("Active profiles area is read-only");
updateProfilesText();
}
Show replies by date