Bug found in HomefurniturePanel.java
Code: Select all
private void layoutComponents() {
int standardGap = Math.round(5 * SwingTools.getResolutionScale());
// Preview
// BUG Here ?
/*
add(this.transformationsLabel, new GridBagConstraints(
0, 0, 2, 1, 0, 0, GridBagConstraints.LINE_START,
GridBagConstraints.NONE, new Insets(0, 0, standardGap, 10), 0, 0));
*/
this.previewComponent.setPreferredSize(new Dimension(400, 400));
add(this.previewComponent, new GridBagConstraints(
0, 1, 1, 10, 0, 0, GridBagConstraints.NORTH,
GridBagConstraints.NONE, new Insets(0, 2, 0, 15), 0, 0));
add(this.resetTransformationsButton, new GridBagConstraints(
1, 1, 1, 1, 0, 0, GridBagConstraints.NORTH,
GridBagConstraints.BOTH, new Insets(0, 2, standardGap, 0), 0, 0));