Browse Source

Fixes issue 1321: Prefs dialog is too tall.


git-svn-id: http://svn.dmdirc.com/trunk@4260 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Shane Mc Cormack 16 years ago
parent
commit
6f26fcf737
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/ui/swing/dialogs/prefs/SwingPreferencesDialog.java

+ 1
- 1
src/com/dmdirc/ui/swing/dialogs/prefs/SwingPreferencesDialog.java View File

@@ -154,7 +154,7 @@ public final class SwingPreferencesDialog extends StandardDialog implements
154 154
         getOkButton().addActionListener(this);
155 155
         getCancelButton().addActionListener(this);
156 156
 
157
-        setLayout(new MigLayout("fillx, wmin 650, wmax 650"));
157
+        setLayout(new MigLayout("fillx, wmin 650, wmax 650, hmax 600"));
158 158
         add(tabList, "width 150, growy, spany");
159 159
         add(mainPanel, "wrap, width 480, grow");
160 160
         add(getLeftButton(), "split, right");

Loading…
Cancel
Save