- 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.

This commit is contained in:
Chris
2011-10-26 13:35:14 +00:00
parent e0df90bccb
commit 4e01128e21

View File

@@ -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");