Add print statement back to configure. Tidy up GridLayout instnciation. #28 #1183

This commit is contained in:
Penn, John M 047828115
2021-08-30 12:30:35 -05:00
parent 82c55d405d
commit 2153eaa6f0
3 changed files with 3 additions and 4 deletions

View File

@ -970,9 +970,8 @@ public class SimControlApplication extends TrickApplication implements PropertyC
JXPanel commandsPanel = new JXPanel();
titledCommandsPanel.setContentContainer(commandsPanel);
GridLayout gridLayout = null;
// 2 columns and 5 rows, each component has the same width and height.
gridLayout = new GridLayout(5,2,2,4);
GridLayout gridLayout = new GridLayout(5,2,2,4);
commandsPanel.setLayout(gridLayout);