Revision: 3852
Author: [email protected]
Date: Mon Aug  9 08:44:56 2010
Log: Added a better title and icon for the prompt that creates new groups in the SecurityPanel.
http://code.google.com/p/power-architect/source/detail?r=3852

Modified:
/trunk/src/main/java/ca/sqlpower/architect/swingui/enterprise/SecurityPanel.java

=======================================
--- /trunk/src/main/java/ca/sqlpower/architect/swingui/enterprise/SecurityPanel.java Thu Aug 5 13:08:01 2010 +++ /trunk/src/main/java/ca/sqlpower/architect/swingui/enterprise/SecurityPanel.java Mon Aug 9 08:44:56 2010
@@ -335,7 +335,11 @@
     }

     private Group createGroupFromPrompter() {
- Object input = JOptionPane.showInputDialog(getPanel(), "Enter a name for the group.");
+        Object input = JOptionPane.showInputDialog(
+                getPanel(),
+                "Enter a name for the group.",
+                "Enter the name of the group.",
+                JOptionPane.INFORMATION_MESSAGE);
         if (input != null && !input.equals("")) {
             return new Group((String) input);
         } else {

Reply via email to