> > Somehow my labels with a leading 'W' when left aligned, lose a couple
> of
> > pixels off the left.
1 Pixel actually.
> I have noticed that too. So far I have used the easy but not very
> satisfying work-around of simply adding a space in front of the string
> to display.
Bug Id 4140220
due to fix in 1.5
overide JLabel and do this:
public void paint(Graphics g) {
g.translate(1,0);
super.paint(g);
}

Signature
Mike W
Filip Larsen - 09 Dec 2003 21:44 GMT
I wrote
> > I have noticed that too. So far I have used the easy but not very
> > satisfying work-around of simply adding a space in front of the string
> > to display.
and VisionSet answered
> Bug Id 4140220
>
[quoted text clipped - 6 lines]
> super.paint(g);
> }
Thank you for the info. I was too lazy to search for it myself on bug
parade :)
Regards,

Signature
Filip Larsen