From 1442948fbe4589828c7e0767d902b44f9ea70ac0 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 31 Jul 2014 13:08:34 +0000 Subject: [PATCH] * fix layout issues --- source/net/filebot/ui/rename/FormatDialog.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/net/filebot/ui/rename/FormatDialog.java b/source/net/filebot/ui/rename/FormatDialog.java index c2497ec9..21c74ad0 100644 --- a/source/net/filebot/ui/rename/FormatDialog.java +++ b/source/net/filebot/ui/rename/FormatDialog.java @@ -166,9 +166,9 @@ public class FormatDialog extends JDialog { header.setBorder(new SeparatorBorder(1, new Color(0xB4B4B4), new Color(0xACACAC), GradientStyle.LEFT_TO_RIGHT, Position.BOTTOM)); header.add(progressIndicator, "pos 1al 0al, hidemode 3"); - header.add(title, "wrap unrel:push"); - header.add(preview, "hmin 16px, gap indent, hidemode 3, wmax 90%"); - header.add(status, "hmin 16px, gap indent, hidemode 3, wmax 90%, newline"); + header.add(title, "wmin 150px, wrap unrel:push"); + header.add(preview, "wmin 150px, hmin 16px, gap indent, hidemode 3, wmax 90%"); + header.add(status, "wmin 150px, hmin 16px, gap indent, hidemode 3, wmax 90%, newline"); JPanel content = new JPanel(new MigLayout("insets dialog, nogrid, fill"));