[Bprocessor-commit] gui/src/net/sourceforge/bprocessor/gui/treeview GenericTreeView.java, 1.35, 1.3
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-08-18 11:25:05
|
Update of /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv15664/src/net/sourceforge/bprocessor/gui/treeview Modified Files: GenericTreeView.java Log Message: Attempt to fix CameraNode class not found on startup Index: GenericTreeView.java =================================================================== RCS file: /cvsroot/bprocessor/gui/src/net/sourceforge/bprocessor/gui/treeview/GenericTreeView.java,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** GenericTreeView.java 10 Aug 2006 13:13:32 -0000 1.35 --- GenericTreeView.java 18 Aug 2006 11:25:01 -0000 1.36 *************** *** 214,226 **** */ public void changed() { ! if (!isChanged) { ! isChanged = true; ! SwingUtilities.invokeLater ( ! new Runnable() { ! public void run() { ! flush(); } ! } ! ); } } --- 214,228 ---- */ public void changed() { ! if (GUI.getInstance().isPresented()) { ! if (!isChanged) { ! isChanged = true; ! SwingUtilities.invokeLater ( ! new Runnable() { ! public void run() { ! flush(); ! } } ! ); ! } } } |