From 3468185b932a2913458795db8fa8aed9c3cd1b96 Mon Sep 17 00:00:00 2001 From: Simon McVittie <smcv@collabora.com> Date: Mon, 10 Feb 2020 16:22:31 +0000 Subject: [PATCH] test-ui: Clarify what the "no runtime" choice means Signed-off-by: Simon McVittie <smcv@collabora.com> --- pressure-vessel-test-ui | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pressure-vessel-test-ui b/pressure-vessel-test-ui index d13b36e14..9f83709e4 100755 --- a/pressure-vessel-test-ui +++ b/pressure-vessel-test-ui @@ -128,7 +128,10 @@ class Gui: self.grid.attach(runtime_label, 0, row, 1, 1) self.runtime_combo = Gtk.ComboBoxText.new() - self.runtime_combo.append('/', 'None (use host system)') + self.runtime_combo.append( + '/', + 'None (use host system and traditional LD_LIBRARY_PATH runtime)' + ) for path, description in sorted(self.runtimes.items()): self.runtime_combo.append(path, description) -- GitLab