mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix wizard field label insets
This commit is contained in:
@@ -200,9 +200,9 @@ public class ProjectSettingsStep extends ModuleWizardStep implements SettingsSte
|
||||
static void addField(String label, JComponent field, JPanel panel) {
|
||||
JLabel jLabel = new JBLabel(label);
|
||||
jLabel.setLabelFor(field);
|
||||
panel.add(jLabel, new GridBagConstraints(0, GridBagConstraints.RELATIVE, 1, 1, 0, 0, GridBagConstraints.NORTHWEST,
|
||||
GridBagConstraints.NONE, JBUI.insets(10, 0, 5, 0), 4, 0));
|
||||
panel.add(field, new GridBagConstraints(1, GridBagConstraints.RELATIVE, 1, 1, 1.0, 0, GridBagConstraints.NORTHWEST,
|
||||
panel.add(jLabel, new GridBagConstraints(0, GridBagConstraints.RELATIVE, 1, 1, 0, 0, GridBagConstraints.CENTER,
|
||||
GridBagConstraints.NONE, JBUI.insetsBottom(5), 4, 0));
|
||||
panel.add(field, new GridBagConstraints(1, GridBagConstraints.RELATIVE, 1, 1, 1.0, 0, GridBagConstraints.CENTER,
|
||||
GridBagConstraints.HORIZONTAL, JBUI.insetsBottom(5), 0, 0));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user