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

@ -534,5 +534,5 @@ AX_ER7_UTILS([])
AC_CONFIG_FILES([share/trick/makefiles/config_user.mk])
AC_OUTPUT
printf "\033@<:@32mconfigure script successfully completed\033@<:@0m\n"

2
configure vendored
View File

@ -11291,6 +11291,6 @@ printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2
fi
printf "\033[32mconfigure script successfully completed\033[0m\n"

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