From db5c4c43ac927dc67614351672e715af391b14db Mon Sep 17 00:00:00 2001 From: Chris Newland Date: Sat, 28 Oct 2023 18:15:00 +0100 Subject: [PATCH] adjusted new labels, added new author --- pom.xml | 4 ++++ .../jitwatch/ui/sandbox/SandboxConfigStage.java | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 4b8de7fb..2afe5c30 100644 --- a/pom.xml +++ b/pom.xml @@ -134,6 +134,10 @@ Carlos Ferreira + + Filippo Barbari + + diff --git a/ui/src/main/java/org/adoptopenjdk/jitwatch/ui/sandbox/SandboxConfigStage.java b/ui/src/main/java/org/adoptopenjdk/jitwatch/ui/sandbox/SandboxConfigStage.java index 689c1d3a..c26bce7e 100644 --- a/ui/src/main/java/org/adoptopenjdk/jitwatch/ui/sandbox/SandboxConfigStage.java +++ b/ui/src/main/java/org/adoptopenjdk/jitwatch/ui/sandbox/SandboxConfigStage.java @@ -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); @@ -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()); @@ -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());