From b589cdf6ebd3092acd6b37570a2f8511ae8a8020 Mon Sep 17 00:00:00 2001 From: Chris Newland Date: Sat, 28 Oct 2023 18:04:07 +0100 Subject: [PATCH] shortened new config labels --- .../adoptopenjdk/jitwatch/ui/sandbox/SandboxConfigStage.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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..690f4dc7 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 @@ -541,7 +541,7 @@ private HBox buildHBoxExtraCompilationSwitches() { HBox hbox = new HBox(); - Label labelExtraCompilation = new Label("Extra VM compilation switches:"); + Label labelExtraCompilation = new Label("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("Runtime options:"); labelExtraRuntime.setMinWidth(labelWidth); txtExtraRuntimeSwitches = new TextField(config.getExtraVMRuntimeSwitches());