Revision: 3849
Author: [email protected]
Date: Mon Aug 9 07:51:04 2010
Log: Fixed the sizing of the forward engineering warning dialog where the
error JTextArea was partially hidden.
http://code.google.com/p/power-architect/source/detail?r=3849
Modified:
/trunk/src/main/java/ca/sqlpower/architect/swingui/action/ExportDDLAction.java
=======================================
---
/trunk/src/main/java/ca/sqlpower/architect/swingui/action/ExportDDLAction.java
Wed Jul 28 11:27:41 2010
+++
/trunk/src/main/java/ca/sqlpower/architect/swingui/action/ExportDDLAction.java
Mon Aug 9 07:51:04 2010
@@ -117,7 +117,7 @@
JPanel mainPanel = new JPanel();
DefaultFormBuilder builder = new
DefaultFormBuilder(new FormLayout("pref:grow"), mainPanel);
builder.setDefaultDialogBorder();
- JTextArea explanation = new
JTextArea(GENDDL_WARNINGS_EXPLANATION, 5, 60);
+ JTextArea explanation = new
JTextArea(GENDDL_WARNINGS_EXPLANATION, 8, 60);
explanation.setLineWrap(true);
explanation.setWrapStyleWord(true);
explanation.setEditable(false);