Hi all
I have a dual JPanel on my application.
One display a picture, the other display the SVG of this picture.
I Used before two JScrollPane to move into theses pictures, and put
xxx.getVerticalScrollBar().setModel(yyy.getVerticalScrollBar().getModel());
xxx.getHorizontalScrollBar().setModel(yyy.getHorizontalScrollBar().getModel());
to synchronize movements and size of theses ScrollPane.
I tried to use the same method by extending JSVGScrollPane to put getVerticalScrollBar and getHorizontal... but there is another strange issue : ScrollBar never show on my SVG with or without setting model.
My SVG has a size of 4000*3000 and my JSVGCanvas is around 400*300. There is a zoom factor applied by a JXTransformer and setRenderingTransform method of JSVGCanvas. Is this method cause some issue with JSVGScrollPane ?
Thanks for your help !