Skip to content
Snippets Groups Projects
Commit 3468185b authored by Simon McVittie's avatar Simon McVittie
Browse files

test-ui: Clarify what the "no runtime" choice means

parent 5071c3be
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment