IDEMPIERE-248 : Field group labels can be truncated (Swing)

Integrated by Carlos Ruiz - globalqss
This commit is contained in:
Nicolas Micoud 2012-06-23 23:48:11 -05:00
parent 6b5be8ce33
commit 4f9756bbc7
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ public final class VPanel extends CTabbedPane
{ {
CLabel label = new CLabel(fieldGroup, CLabel.LEADING); CLabel label = new CLabel(fieldGroup, CLabel.LEADING);
label.setFont(AdempierePLAF.getFont_Label().deriveFont(Font.BOLDITALIC, AdempierePLAF.getFont_Label().getSize2D())); label.setFont(AdempierePLAF.getFont_Label().deriveFont(Font.BOLDITALIC, AdempierePLAF.getFont_Label().getSize2D()));
m_main.add(label, "newline, alignx leading"); m_main.add(label, "newline, spanx, growx");
m_main.add(new JSeparator(), "newline, spanx, growx"); m_main.add(new JSeparator(), "newline, spanx, growx");
// reset // reset
} }