updated params width

git-svn-id: https://svn2.assembla.com/svn/romraider/trunk@124 38686702-15cf-42e4-a595-3071df8bf5ea
This commit is contained in:
kascade 2008-06-11 12:31:45 +00:00
parent 87bacd8c5e
commit cd933c6c10
1 changed files with 1 additions and 1 deletions

View File

@ -765,7 +765,7 @@ public final class EcuLogger extends JFrame implements WindowListener, PropertyC
private JSplitPane buildSplitPane(JComponent leftComponent, JComponent rightComponent) {
JSplitPane splitPane = new JSplitPane(HORIZONTAL_SPLIT, leftComponent, rightComponent);
splitPane.setDividerSize(2);
splitPane.setDividerLocation(300);
splitPane.setDividerLocation(450);
splitPane.addPropertyChangeListener(this);
return splitPane;
}