mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Fix for WI-1834: Project settings - Code style options layout error
This commit is contained in:
+3
-2
@@ -200,8 +200,9 @@ public class CodeStyleBlankLinesPanel extends MultilanguageCodeStyleAbstractPane
|
||||
}
|
||||
|
||||
private static JTextField createTextField() {
|
||||
|
||||
return new JTextField(6);
|
||||
JTextField field = new JTextField(6);
|
||||
field.setMinimumSize(new Dimension(30, field.getMinimumSize().height));
|
||||
return field;
|
||||
}
|
||||
|
||||
protected int getRightMargin() {
|
||||
|
||||
Reference in New Issue
Block a user