From 9d614db4de3b9c8018a42c0c82eedd134af85d6c Mon Sep 17 00:00:00 2001 From: gmungoc Date: Wed, 11 Dec 2019 13:09:43 +0000 Subject: [PATCH] JAL-3490 extract constants for number of rows in layout --- src/jalview/jbgui/GFinder.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/jalview/jbgui/GFinder.java b/src/jalview/jbgui/GFinder.java index 57beaee..1600b75 100755 --- a/src/jalview/jbgui/GFinder.java +++ b/src/jalview/jbgui/GFinder.java @@ -52,6 +52,12 @@ public class GFinder extends JPanel private static final String FINDER_CACHE_KEY = "CACHE.FINDER"; + /* + * if more checkboxes are wanted, increase this value + * and add to centrePanel in jbInit() + */ + private static final int PANEL_ROWS = 4; + protected JButton createFeatures; protected JvCacheableInputBox searchBox; @@ -96,13 +102,13 @@ public class GFinder extends JPanel */ this.setLayout(new BorderLayout()); JPanel eastPanel = new JPanel(); - eastPanel.setLayout(new GridLayout(4, 1)); + eastPanel.setLayout(new GridLayout(PANEL_ROWS, 1)); this.add(eastPanel, BorderLayout.EAST); JPanel centrePanel = new JPanel(); - centrePanel.setLayout(new GridLayout(4, 1)); + centrePanel.setLayout(new GridLayout(PANEL_ROWS, 1)); this.add(centrePanel, BorderLayout.CENTER); JPanel westPanel = new JPanel(); - westPanel.setLayout(new GridLayout(4, 1)); + westPanel.setLayout(new GridLayout(PANEL_ROWS, 1)); this.add(westPanel, BorderLayout.WEST); /* -- 1.7.10.2