From 71f01ab66dc423c2ef3a77959539101261df4edb Mon Sep 17 00:00:00 2001 From: Sibo Van Gool Date: Tue, 1 Feb 2022 07:35:32 +0100 Subject: [PATCH] [fixes #1084] Move credit content to second column --- .../sf/openrocket/gui/figure3d/photo/PhotoSettingsConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swing/src/net/sf/openrocket/gui/figure3d/photo/PhotoSettingsConfig.java b/swing/src/net/sf/openrocket/gui/figure3d/photo/PhotoSettingsConfig.java index f3a2fceb4..28e4304ac 100644 --- a/swing/src/net/sf/openrocket/gui/figure3d/photo/PhotoSettingsConfig.java +++ b/swing/src/net/sf/openrocket/gui/figure3d/photo/PhotoSettingsConfig.java @@ -296,7 +296,7 @@ public class PhotoSettingsConfig extends JTabbedPane { /// Image credit final JLabel creditLabel = new JLabel(trans.get("PhotoSettingsConfig.lbl.skyCredit")); - add(creditLabel, "wrap"); + add(creditLabel); final JTextArea credit = new JTextArea(); credit.setEditable(false);