File tree 2 files changed +11
-4
lines changed 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -264,7 +264,9 @@ public void windowDeactivated(WindowEvent e) {
264
264
splitPane .setDividerSize (dividerSize );
265
265
}
266
266
267
- splitPane .setMinimumSize (new Dimension (600 , 400 ));
267
+ // the following changed from 600, 400 for netbooks
268
+ // http://code.google.com/p/arduino/issues/detail?id=52
269
+ splitPane .setMinimumSize (new Dimension (600 , 100 ));
268
270
box .add (splitPane );
269
271
270
272
// hopefully these are no longer needed w/ swing
Original file line number Diff line number Diff line change @@ -76,11 +76,16 @@ editor.window.width.default = 500
76
76
editor.window.height.default = 600
77
77
78
78
editor.window.width.min = 400
79
- editor.window.height.min = 500
79
+ editor.window.height.min = 290
80
+
81
+ # the following commented out to better support netbooks
82
+ # http://code.google.com/p/arduino/issues/detail?id=52
83
+ #editor.window.height.min = 500
80
84
# tested as approx 440 on OS X
81
- editor.window.height.min.macosx = 450
85
+ # editor.window.height.min.macosx = 450
82
86
# tested to be 515 on Windows XP, this leaves some room
83
- editor.window.height.min.windows = 530
87
+ #editor.window.height.min.windows = 530
88
+
84
89
85
90
# font size for editor
86
91
editor.font=Monospaced,plain,12
You can’t perform that action at this time.
0 commit comments