Open GoogleCodeExporter opened 8 years ago
Solution is:
in org.jdesktop.xswingx.plaf.PromptTextUI
Change the update() method to:
/**
* Calls super.{@link #update(Graphics, JComponent)}, which in turn calls
* the paint method of this object.
*/
@Override public void update(Graphics g, JComponent c) {
if (shouldPaintPrompt( (JTextComponent)c )) {
super.update(g, c);
} else {
delegate.update(g, c);
}
}
Btw. Thanks for this library!
Original comment by rickblom...@gmail.com
on 15 Sep 2009 at 5:13
why isn't this fixed already?
Original comment by i30817@gmail.com
on 29 Nov 2009 at 7:13
It seems that the project is now unmaintained
Original comment by thraw...@gmail.com
on 7 Dec 2009 at 5:17
Original issue reported on code.google.com by
hans.na...@gmx.de
on 10 Nov 2008 at 9:22