Hi ! I'm using a heavilly modified version of the JSVGCanvas (Batik 1.6) to display and alter graphics.
Now I want to tab between the "controls" (graphical objects that can be edited) on the canvas, and most of the time it works like it should. But when the canvas ha focus, and I press Shoft + Tab, the following exception is thrown: java.lang.Error: Decrement not implemented. at org.apache.batik.gvt.event.AWTEventDispatcher.decrementKeyTarget(Unknown Source) at org.apache.batik.gvt.event.AWTEventDispatcher.dispatchEvent(Unknown Source) at org.apache.batik.gvt.event.AWTEventDispatcher.keyPressed(Unknown Source) at org.apache.batik.swing.svg.JSVGComponent$15.run(Unknown Source) at org.apache.batik.util.RunnableQueue.run(Unknown Source) at java.lang.Thread.run(Unknown Source) I've disabled all interactors I could find, so what is it that makes the Canvas respond to my Shift + Tab except for my own keyhandler? // Henric Rosvall
