We have lots of tabs, with dynamic icons that show various amount. We periodically update this icons. This is unchanged code since several years, but after the update to 6.0 we happened to notice that they do not update anymore.
We can see that the new icon is fetched from the server as expected, but the tab icon is not changed on-screen like it used to.
6.0-p20161207
We can see that the new icon is fetched from the server as expected, but the tab icon is not changed on-screen like it used to.
Code:
Tab tab = new Tab(title, icon); tab.setIconWidth(iconWidth); tab.setIconHeight(iconHeight); tab.setPane(pane); //above works, shows correct icon ..... //changing the icon below used to work, now it has no effect in browser String url = imageCreator.getUrl(length); System.out.println("url for "+tab.getName()+ " : "+url); tab.setIcon(url);
Comment