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

test-ui: Do some expectation-management


We don't want users who discover this test UI to think that everything
is going to work as-is.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent c071c751
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
import logging
import os
import subprocess
import sys
try:
......@@ -98,6 +99,18 @@ class Gui:
row = 0
label = Gtk.Label.new('')
label.set_markup(
'This is a test UI for developers. '
'<b>'
'Some options are known to break games and Steam features.'
'</b>'
' Use at your own risk!'
)
label.set_line_wrap(True)
self.grid.attach(label, 0, row, 2, 1)
row += 1
runtime_label = Gtk.Label.new('Runtime')
self.grid.attach(runtime_label, 0, row, 1, 1)
......
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