From 4e01128e214cbb0ae0c74f051666e4a342ecd392 Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 26 Oct 2011 13:35:14 +0000 Subject: [PATCH] - This fixes the problem where the card detail and card picture panels in the deck editor were pushed to far to the right. Decreased the minimum width for the jLabelAnalysisGap component and this should take care of this issue. --- src/main/java/forge/gui/deckeditor/DeckEditorCommon.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/forge/gui/deckeditor/DeckEditorCommon.java b/src/main/java/forge/gui/deckeditor/DeckEditorCommon.java index 613fdf651cb..81bb4b581e2 100644 --- a/src/main/java/forge/gui/deckeditor/DeckEditorCommon.java +++ b/src/main/java/forge/gui/deckeditor/DeckEditorCommon.java @@ -204,7 +204,7 @@ public final class DeckEditorCommon extends DeckEditorBase { content.add(removeButton, "w 100, h 49, sg button"); content.add(importButton, "w 100, h 49, sg button, gapleft 40px"); // Label is used to push the analysis button to the right to separate analysis button from add/remove card ones - content.add(jLabelAnalysisGap, "wmin 100, growx"); + content.add(jLabelAnalysisGap, "wmin 75, growx"); content.add(analysisButton, "w 100, h 49, wrap"); content.add(bottom.getTableDecorated(), "cell 0 6, grow");