From 792eca6d06f18a841a1f05b17ed8e0fb5213596f Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Mon, 2 Nov 2020 10:27:53 +0000 Subject: [PATCH] center review title --- .../views/com/muwire/gui/CollectionWizardView.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gui/griffon-app/views/com/muwire/gui/CollectionWizardView.groovy b/gui/griffon-app/views/com/muwire/gui/CollectionWizardView.groovy index f69a2f22..0fa8a830 100644 --- a/gui/griffon-app/views/com/muwire/gui/CollectionWizardView.groovy +++ b/gui/griffon-app/views/com/muwire/gui/CollectionWizardView.groovy @@ -80,7 +80,9 @@ class CollectionWizardView { } panel(constraints : "review") { borderLayout() - label(text : trans("COLLECTION_REVIEW_TITLE"), constraints : BorderLayout.NORTH) + panel (constraints : BorderLayout.NORTH) { + label(text : trans("COLLECTION_REVIEW_TITLE")) + } scrollPane(constraints : BorderLayout.CENTER) { jTree = new JTree(model.tree) jTree.setCellRenderer(new PathTreeRenderer())