tweaking new layout for windows

This commit is contained in:
benfry
2002-11-19 22:53:51 +00:00
parent 49fd358328
commit d53bdc5c4a
3 changed files with 19 additions and 6 deletions

View File

@@ -340,9 +340,14 @@ public class PdeEditorConsole extends Component {
//}
}
public Dimension getMinimumSize() {
return getPreferredSize();
}
public Dimension getMinimumSize() {
return getPreferredSize();
}
public Dimension getMaximumSize() {
Dimension pref = getPreferredSize();
return new Dimension(3000, pref.width);
}
}