X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fde%2Ftodesbaum%2Fjsite%2Fgui%2FNodeManagerPage.java;h=8efc2ed504ab0851ad096d64192049158a84848d;hb=92c8e5e93f795c84e4d5cabe6089adc745ffbb6b;hp=7b904d97991e0f569d2b4ccaa9bd2bf7e14d9db2;hpb=2de5e7ac9956a0b12addf462055365814a3cfbdf;p=jSite.git diff --git a/src/main/java/de/todesbaum/jsite/gui/NodeManagerPage.java b/src/main/java/de/todesbaum/jsite/gui/NodeManagerPage.java index 7b904d9..8efc2ed 100644 --- a/src/main/java/de/todesbaum/jsite/gui/NodeManagerPage.java +++ b/src/main/java/de/todesbaum/jsite/gui/NodeManagerPage.java @@ -1,5 +1,5 @@ /* - * jSite - NodeManagerPage.java - Copyright © 2006–2012 David Roden + * jSite - NodeManagerPage.java - Copyright © 2006–2019 David Roden * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -198,7 +198,6 @@ public class NodeManagerPage extends TWizardPage implements ListSelectionListene nodeList.setName("node-list"); nodeList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); nodeList.addListSelectionListener(this); - nodeList.setPreferredSize(new Dimension(250, -1)); nodeNameTextField = new JTextField(""); nodeNameTextField.getDocument().putProperty("Name", "node-name"); @@ -237,7 +236,9 @@ public class NodeManagerPage extends TWizardPage implements ListSelectionListene nodeInformationPanel.add(nodePortSpinner, new GridBagConstraints(1, 4, 1, 1, 0.0, 0.0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(6, 6, 0, 0), 0, 0)); setLayout(new BorderLayout(12, 12)); - add(new JScrollPane(nodeList), BorderLayout.LINE_START); + final JScrollPane nodeListScrollPane = new JScrollPane(nodeList); + nodeListScrollPane.setPreferredSize(new Dimension(250, -1)); + add(nodeListScrollPane, BorderLayout.LINE_START); add(centerPanel, BorderLayout.CENTER); I18nContainer.getInstance().registerRunnable(new Runnable() {