Re: Bug found in HomefurniturePanel.java
by Walter125 » Mon Oct 16, 2023 6:28 pm
Following your suggestion, I tried to add 1 pixel only to the height, it also works. With the following code:
Code: Select all
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.