Skip to content

Commit

Permalink
adjusted new labels, added new author
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Newland committed Oct 28, 2023
1 parent 9071f53 commit db5c4c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@
<contributor>
<name>Carlos Ferreira</name>
</contributor>
<contributor>
<name>Filippo Barbari</name>
</contributor>

</contributors>

<issueManagement>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class SandboxConfigStage extends Stage

private Scene scene;

private static final int labelWidth = 160;
private static final int labelWidth = 170;

private static final Logger logger = LoggerFactory.getLogger(SandboxConfigStage.class);

Expand Down Expand Up @@ -541,7 +541,7 @@ private HBox buildHBoxExtraCompilationSwitches()
{
HBox hbox = new HBox();

Label labelExtraCompilation = new Label("Extra VM compilation switches:");
Label labelExtraCompilation = new Label("Extra Compilation options:");
labelExtraCompilation.setMinWidth(labelWidth);

txtExtraCompilationSwitches = new TextField(config.getExtraVMCompilationSwitches());
Expand All @@ -558,7 +558,7 @@ private HBox buildHBoxExtraRuntimeSwitches()
{
HBox hbox = new HBox();

Label labelExtraRuntime = new Label("Extra VM runtime switches:");
Label labelExtraRuntime = new Label("Extra Runtime Options:");
labelExtraRuntime.setMinWidth(labelWidth);

txtExtraRuntimeSwitches = new TextField(config.getExtraVMRuntimeSwitches());
Expand Down

0 comments on commit db5c4c4

Please sign in to comment.