Hi,

thank you for your help with my othe rproblem, I will come back to that later. Now, I got to a bigger problem:
I want to change the SVG document, that is displayed by a JSVGCanvas. So, I put the changes in the run-methode of a new runnable, I add to the runnablequeue of the updatemanager. After that, I want to transform the canvas like that:
---
JGVTComponent c = (JGVTComponent)getCanvas();
AffineTransform at = AffineTransform.getTranslateInstance(translation.getX(),
translation.getY());
AffineTransform rt = (AffineTransform)c.getRenderingTransform().clone();
rt.preConcatenate(at);
c.setRenderingTransform(rt);
---
Now, I wich that the state of the document _before_ the transformation is not painted to the canvas. How can I tell the updatemanager, my document shall be changed, but not the display?


Thank you very much!

Regards,
Tjorven


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to