[Nextobjects-devel] nextobjects/nextobjects/src/org/devaki/nextobjects/ui/main SplashScreen.java,1.5
Status: Alpha
Brought to you by:
eflorent
From: <efl...@us...> - 2003-05-25 08:02:40
|
Update of /cvsroot/nextobjects/nextobjects/nextobjects/src/org/devaki/nextobjects/ui/main In directory sc8-pr-cvs1:/tmp/cvs-serv12214/src/org/devaki/nextobjects/ui/main Modified Files: SplashScreen.java Log Message: Fixed major bug in merise transform. Index: SplashScreen.java =================================================================== RCS file: /cvsroot/nextobjects/nextobjects/nextobjects/src/org/devaki/nextobjects/ui/main/SplashScreen.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SplashScreen.java 24 May 2003 18:50:47 -0000 1.5 --- SplashScreen.java 25 May 2003 08:02:36 -0000 1.6 *************** *** 55,64 **** // Define the size of the window ! this.setSize(new Dimension(550, 370)); // Center the window int x = (tk.getScreenSize().width - 550) / 2; ! int y = (tk.getScreenSize().height - 370) / 2; this.setLocation(x, y); ! this.setLocationRelativeTo(null); /** Components **/ --- 55,64 ---- // Define the size of the window ! this.setSize(new Dimension(550, 355)); // Center the window int x = (tk.getScreenSize().width - 550) / 2; ! int y = (tk.getScreenSize().height - 355) / 2; this.setLocation(x, y); ! // this.setLocationRelativeTo(null); /** Components **/ |