We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2985738 commit f968da9Copy full SHA for f968da9
src/java.desktop/windows/classes/sun/awt/windows/WWindowPeer.java
@@ -600,7 +600,9 @@ public void updateGC() {
600
newDev.addDisplayChangedListener(this);
601
}
602
603
- updateIconImages();
+ if (((Window)target).isVisible()) {
604
+ updateIconImages();
605
+ }
606
607
AWTAccessor.getComponentAccessor().
608
setGraphicsConfiguration((Component)target, winGraphicsConfig);
0 commit comments