From 3a2f1f691730f970b64027e76f70728b09e11b31 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 25 Mar 2015 10:35:32 +0000 Subject: [PATCH] * fine-tune for Ubuntu USC --- source/net/filebot/ui/MainFrame.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/ui/MainFrame.java b/source/net/filebot/ui/MainFrame.java index 7caeb9c3..fd6a2989 100644 --- a/source/net/filebot/ui/MainFrame.java +++ b/source/net/filebot/ui/MainFrame.java @@ -84,7 +84,7 @@ public class MainFrame extends JFrame { headerPanel.getTitleLabel().setBorder(new EmptyBorder(8, 90, 10, 0)); JComponent c = (JComponent) getContentPane(); - c.setLayout(new MigLayout("insets 0, fill, hidemode 3", String.format("%dx[fill]", isUbuntuApp() ? 115 : 95), "fill")); + c.setLayout(new MigLayout("insets 0, fill, hidemode 3", String.format("%dpx[fill]", isUbuntuApp() ? 115 : 95), "fill")); c.add(selectionListScrollPane, "pos 6px 10px n 100%-12px"); c.add(headerPanel, "growx, dock north");