From: Andreas W. <an...@us...> - 2005-07-08 20:12:23
|
Update of /cvsroot/magicmap//magicmapclient/src/net/sf/magicmap/client/views In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27101/src/net/sf/magicmap/client/views Modified Files: MapView.java Log Message: new icon for location rescanning part 3 thread.sleep at the right position is missing Index: MapView.java =================================================================== RCS file: /cvsroot/magicmap//magicmapclient/src/net/sf/magicmap/client/views/MapView.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** MapView.java 8 Jul 2005 15:47:32 -0000 1.8 --- MapView.java 8 Jul 2005 20:12:10 -0000 1.9 *************** *** 884,888 **** --- 884,897 ---- sl.setX(v, node.getX()); sl.setY(v, node.getY()); + } else if (type == NodeModel.UPDATE_RESCAN){ + sl.update(); + try { + wait(10000); + }catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } } + } |