[graphl-cvs] graphl/src/org/mediavirus/graphl GraphlApplication.java
Status: Pre-Alpha
Brought to you by:
flo1
From: Flo L. <fl...@us...> - 2004-10-14 19:22:02
|
Update of /cvsroot/graphl/graphl/src/org/mediavirus/graphl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11936/src/org/mediavirus/graphl Modified Files: GraphlApplication.java Log Message: do not load default file at startup Index: GraphlApplication.java =================================================================== RCS file: /cvsroot/graphl/graphl/src/org/mediavirus/graphl/GraphlApplication.java,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** GraphlApplication.java 14 Oct 2004 13:03:04 -0000 1.10 --- GraphlApplication.java 14 Oct 2004 19:21:51 -0000 1.11 *************** *** 410,414 **** int[] pos = {0,0}; boolean decorations = true; ! String filename = System.getProperty("user.dir") + DEFAULT_FILE; String configfile = System.getProperty("user.dir") + "/config/config.rdf"; --- 410,414 ---- int[] pos = {0,0}; boolean decorations = true; ! String filename = DEFAULT_FILE; String configfile = System.getProperty("user.dir") + "/config/config.rdf"; *************** *** 438,442 **** app.setSize(size[0], size[1]); app.setLocation(pos[0], pos[1]); - // TODO (3) provide own event handling (move, resize, close) to be able to remove decorations app.setUndecorated(!decorations); app.show(); --- 438,441 ---- |