--- jsampler/trunk/src/org/jsampler/view/fantasia/MainFrame.java 2008/04/29 22:22:40 1729 +++ jsampler/trunk/src/org/jsampler/view/fantasia/MainFrame.java 2008/05/04 18:40:13 1734 @@ -64,6 +64,7 @@ import javax.swing.JToggleButton; import javax.swing.KeyStroke; import javax.swing.SwingUtilities; +import javax.swing.Timer; import javax.swing.UIManager; import net.sf.juife.TitleBar; @@ -121,6 +122,8 @@ private final JCheckBoxMenuItem cbmiRightSidePaneVisible = new JCheckBoxMenuItem(i18n.getMenuLabel("view.rightSidePane")); + private final Timer guiTimer = new Timer(1000, null); + /** Creates a new instance of MainFrame */ public MainFrame() { @@ -154,6 +157,8 @@ hSplitPane.setDividerLocation(i); setSavedSize(); + + guiTimer.start(); } private JPanel @@ -533,6 +538,9 @@ return CC.getServerList().getServer(i); } + public Timer + getGuiTimer() { return guiTimer; } + protected LSConsoleModel getLSConsoleModel() { return getLSConsolePane().getModel(); }