deweese 2003/11/02 15:19:01
Modified: sources/org/apache/batik/swing/svg JSVGComponent.java
Log:
Fixed a problem with squiggle from my race condition fixes.
Revision Changes Path
1.88 +3 -2 xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java
Index: JSVGComponent.java
===================================================================
RCS file: /home/cvs/xml-batik/sources/org/apache/batik/swing/svg/JSVGComponent.java,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- JSVGComponent.java 2 Nov 2003 18:18:26 -0000 1.87
+++ JSVGComponent.java 2 Nov 2003 23:19:01 -0000 1.88
@@ -716,8 +716,9 @@
} else {
stopProcessing();
synchronized (this) {
- EventQueue.invokeLater(afterStopRunnable);
+ Runnable asr = afterStopRunnable;
afterStopRunnable = null;
+ asr.run();
}
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]