fix wizard field label insets

This commit is contained in:
Daniil Ovchinnikov
2016-12-12 15:17:13 +03:00
parent 93f6447448
commit 84a7ecb96e
@@ -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));
}