Revision 7858

View differences:

trunk/frameworks/_fwAndami/src/com/iver/andami/ui/splash/MultiSplashWindow.java
53 53
				(screenSize.height / 2) - (splashDimension.height / 2));
54 54

  
55 55
		index = 0;
56

  
57
		setSize(splashDimension.width, splashDimension.height + 20);
56 58
		setVisible(true);
57
		setSize(splashDimension.width, splashDimension.height + 20);
58
		show(true);
59 59

  
60 60
		init();
61 61
	}
......
128 128
	public static void main(String[] args) {
129 129
		Frame frame = new Frame();
130 130
		MultiSplashWindow ba = new MultiSplashWindow(frame);
131
		ba.show(true);
131
		ba.setVisible(true);
132 132
		ba.setSize(500, 500);
133 133
		ba.init();
134 134
		ba.start();
trunk/frameworks/_fwAndami/src/com/iver/andami/ui/splash/Timer.java
88 88
/** stops the timer */
89 89
     public void stop()
90 90
     {
91
    	  timerThread.stop();
91
    	  timerThread.interrupt();
92 92
    	  timerThread = null;
93 93
     }
94 94

  

Also available in: Unified diff