Author: tfmorris
Date: 2007-11-11 02:37:53-0800
New Revision: 13754
Modified:
trunk/src_new/org/argouml/uml/ui/behavior/activity_graphs/PropPanelCallState.java
trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java
trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java
trunk/src_new/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java
trunk/src_new/org/argouml/uml/ui/behavior/state_machines/PropPanelSignalEvent.java
Log:
Make sure all text fields which can have a horizontal scroll bar are at least two rows high. This should be the last of them...
Modified: trunk/src_new/org/argouml/uml/ui/behavior/activity_graphs/PropPanelCallState.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/uml/ui/behavior/activity_graphs/PropPanelCallState.java?view=diff&rev=13754&p1=trunk/src_new/org/argouml/uml/ui/behavior/activity_graphs/PropPanelCallState.java&p2=trunk/src_new/org/argouml/uml/ui/behavior/activity_graphs/PropPanelCallState.java&r1=13753&r2=13754
==============================================================================
--- trunk/src_new/org/argouml/uml/ui/behavior/activity_graphs/PropPanelCallState.java (original)
+++ trunk/src_new/org/argouml/uml/ui/behavior/activity_graphs/PropPanelCallState.java 2007-11-11 02:37:53-0800
@@ -69,7 +69,7 @@
callActionEntryList =
new UMLCallStateEntryList(
new UMLStateEntryListModel());
- callActionEntryList.setVisibleRowCount(1);
+ callActionEntryList.setVisibleRowCount(2);
callActionEntryScroll = new JScrollPane(callActionEntryList);
addField(Translator.localize("label.name"),
Modified: trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java?view=diff&rev=13754&p1=trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java&p2=trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java&r1=13753&r2=13754
==============================================================================
--- trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java (original)
+++ trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelCreateAction.java 2007-11-11 02:37:53-0800
@@ -48,7 +48,7 @@
new UMLMutableLinkedList(
new UMLCreateActionClassifierListModel(),
action, null, null, true);
- list.setVisibleRowCount(1);
+ list.setVisibleRowCount(2);
JScrollPane instantiationScroll = new JScrollPane(list);
addFieldBefore(Translator.localize("label.instantiation"),
instantiationScroll,
Modified: trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java?view=diff&rev=13754&p1=trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java&p2=trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java&r1=13753&r2=13754
==============================================================================
--- trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java (original)
+++ trunk/src_new/org/argouml/uml/ui/behavior/common_behavior/PropPanelSendAction.java 2007-11-11 02:37:53-0800
@@ -54,7 +54,7 @@
new UMLMutableLinkedList(
new UMLSendActionSignalListModel(), action,
new ActionNewSignal(), null, true);
- list.setVisibleRowCount(1);
+ list.setVisibleRowCount(2);
JScrollPane signalScroll = new JScrollPane(list);
addFieldBefore(Translator.localize("label.signal"),
signalScroll,
Modified: trunk/src_new/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java?view=diff&rev=13754&p1=trunk/src_new/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java&p2=trunk/src_new/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java&r1=13753&r2=13754
==============================================================================
--- trunk/src_new/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java (original)
+++ trunk/src_new/org/argouml/uml/ui/behavior/state_machines/AbstractPropPanelState.java 2007-11-11 02:37:53-0800
@@ -66,10 +66,10 @@
deferrableEventsScroll = new JScrollPane(deferrableList);
JList entryList = new UMLStateEntryList(new UMLStateEntryListModel());
- entryList.setVisibleRowCount(1);
+ entryList.setVisibleRowCount(2);
entryScroll = new JScrollPane(entryList);
JList exitList = new UMLStateExitList(new UMLStateExitListModel());
- exitList.setVisibleRowCount(1);
+ exitList.setVisibleRowCount(2);
exitScroll = new JScrollPane(exitList);
JList internalTransitionList = new UMLMutableLinkedList(
new UMLStateInternalTransition(), null,
@@ -77,7 +77,7 @@
internalTransitionsScroll = new JScrollPane(internalTransitionList);
JList doList = new UMLStateDoActivityList(
new UMLStateDoActivityListModel());
- doList.setVisibleRowCount(1);
+ doList.setVisibleRowCount(2);
doScroll = new JScrollPane(doList);
}
Modified: trunk/src_new/org/argouml/uml/ui/behavior/state_machines/PropPanelSignalEvent.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/uml/ui/behavior/state_machines/PropPanelSignalEvent.java?view=diff&rev=13754&p1=trunk/src_new/org/argouml/uml/ui/behavior/state_machines/PropPanelSignalEvent.java&p2=trunk/src_new/org/argouml/uml/ui/behavior/state_machines/PropPanelSignalEvent.java&r1=13753&r2=13754
==============================================================================
--- trunk/src_new/org/argouml/uml/ui/behavior/state_machines/PropPanelSignalEvent.java (original)
+++ trunk/src_new/org/argouml/uml/ui/behavior/state_machines/PropPanelSignalEvent.java 2007-11-11 02:37:53-0800
@@ -55,7 +55,7 @@
JList signalList = new UMLSignalEventSignalList(
new UMLSignalEventSignalListModel());
- signalList.setVisibleRowCount(1);
+ signalList.setVisibleRowCount(2);
addField("label.signal",
new JScrollPane(signalList));
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.