Revision: 18291 http://sourceforge.net/p/gate/code/18291 Author: markagreenwood Date: 2014-09-04 18:37:01 +0000 (Thu, 04 Sep 2014) Log Message: ----------- fixed the first 'EDT Violations Week' bug report, and the week hasn't even started yet. Thanks Adam :)
Modified Paths: -------------- gate/trunk/src/main/gate/gui/SerialControllerEditor.java Modified: gate/trunk/src/main/gate/gui/SerialControllerEditor.java =================================================================== --- gate/trunk/src/main/gate/gui/SerialControllerEditor.java 2014-09-04 12:14:12 UTC (rev 18290) +++ gate/trunk/src/main/gate/gui/SerialControllerEditor.java 2014-09-04 18:37:01 UTC (rev 18291) @@ -1392,7 +1392,14 @@ } void fireDataChanged(){ - fireContentsChanged(this, 0, getSize()); + SwingUtilities.invokeLater(new Runnable() { + + @Override + public void run() { + fireContentsChanged(this, 0, getSize()); + } + }); + } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. ------------------------------------------------------------------------------ Slashdot TV. Video for Nerds. Stuff that matters. http://tv.slashdot.org/ _______________________________________________ GATE-cvs mailing list GATE-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gate-cvs