Hi Isomorphic,
please also see this issue. Add this code to the end of MyWindow:
As you can see, the SVG-IButton does not display the test "SVG Test" next to the icon, while the PNG-IButton does.
Best regards
Blama
please also see this issue. Add this code to the end of MyWindow:
Code:
IButton pngTestIButton = new IButton("PNG Test"); pngTestIButton.setIcon("[SKINIMG]DateChooser/arrow_left.png"); addItem(pngTestIButton); IButton svgTestIButton = new IButton("SVG Test"); svgTestIButton.setIcon("[SKINIMG]NavigationBar/miniNav_up.svg"); addItem(svgTestIButton);
Best regards
Blama
Comment