Print at Dec 17, 2025, 4:15:21 AM

Posted by Walter125 at Oct 16, 2023, 6:28:56 PM
Re: Bug found in HomefurniturePanel.java
Following your suggestion, I tried to add 1 pixel only to the height, it also works. With the following code:

Dimension size = this.transformationsLabel.getPreferredSize();
size.height = size.height + 1;
this.transformationsLabel.setPreferredSize(size);


I tried to add 1 pixel only to the width, and 1 pixel both to the width and the height. It worked in all these cases.

About the line I suggested, I don't know why but it works on my system.

I precise that like Keet, I'm using Debian.