svn commit: r15134 - branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: penyaskito
Date: 2008-06-30 15:42:03-0700
New Revision: 15134
Modified:
branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java
Log:
There were too much space between the panel title and the controls. This was because of the lack of a button toolbar.
Modified: branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java?view=diff&rev=15134&p1=branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java&p2=branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java&r1=15133&r2=15134
==============================================================================
--- branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java (original)
+++ branches/xmlpropertypanels-penyaskito-soc08/argouml-core-propertypanels-scratch/src/org/argouml/core/propertypanels/panel/XmlPropertyPanel.java 2008-06-30 15:42:03-0700
@@ -25,7 +25,6 @@
package org.argouml.core.propertypanels.panel;
import javax.swing.ImageIcon;
-import javax.swing.JLabel;
import javax.swing.JPanel;
import org.apache.log4j.Logger;
@@ -49,6 +48,11 @@
public XmlPropertyPanel(String label, ImageIcon icon) {
super(label, icon);
+ /* Since there are no buttons on this panel (YET),
+ * we have to set the size of the buttonpanel,
+ * otherwise the layout will give it a lot of space
+ * */
+ setButtonPanelSize(18);
}
/**