From: <ton...@us...> - 2008-04-07 00:18:14
|
Revision: 765 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=765&view=rev Author: tonytacker Date: 2008-04-06 17:18:05 -0700 (Sun, 06 Apr 2008) Log Message: ----------- wider textarea for stringset Modified Paths: -------------- trunk/src/dl-learner/org/dllearner/gui/WidgetPanelStringSet.java Modified: trunk/src/dl-learner/org/dllearner/gui/WidgetPanelStringSet.java =================================================================== --- trunk/src/dl-learner/org/dllearner/gui/WidgetPanelStringSet.java 2008-04-03 14:03:19 UTC (rev 764) +++ trunk/src/dl-learner/org/dllearner/gui/WidgetPanelStringSet.java 2008-04-07 00:18:05 UTC (rev 765) @@ -69,7 +69,7 @@ private JButton addButton = new JButton("add"); private JButton removeButton = new JButton("remove"); private JButton clearButton = new JButton("clear"); - private JTextField stringField = new JTextField(25); + private JTextField stringField = new JTextField(30); private Component component; private Component oldComponent; @@ -198,7 +198,7 @@ stringList.setLayoutOrientation(JList.VERTICAL); stringList.setVisibleRowCount(-1); JScrollPane stringListScroller = new JScrollPane(stringList); - stringListScroller.setPreferredSize(new Dimension(280, 100)); + stringListScroller.setPreferredSize(new Dimension(380, 100)); buildConstraints(constraints, 0, 2, 1, 2, 100, 100); gridbag.setConstraints(stringListScroller, constraints); widgetPanel.add(stringListScroller, constraints); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |