A wrapper for com.jgoodies.uif.splash.ImageSplash
which is removing flickering when note or progress changes.
The reason of flickering is default lightweigt component's update(Graphics)
method which clears the background before paint(Graphics)
method invocation.
Other solution is to ask JGoodies author to override ImageSplash.update(Graphics)
: i.e. void update(Graphics g) {paint(g);}
|
|