From be14c34d355fec27102df19478bc2d4dd3ad3e30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Qui=C3=B1ones?= Date: Thu, 23 Aug 2012 19:58:38 -0300 Subject: [PATCH] Use the Sugar Theme in the testsuite MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To make useful tests for the Sugar widgets, the theme must be the same. Signed-off-by: Manuel QuiƱones Acked-by: Simon Schampijer --- tests/graphics/common.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tests/graphics/common.py b/tests/graphics/common.py index 3d20d588..02c3e192 100644 --- a/tests/graphics/common.py +++ b/tests/graphics/common.py @@ -20,6 +20,18 @@ from gi.repository import GObject from sugar3.graphics.toolbutton import ToolButton +import os + + +def set_theme(): + settings = Gtk.Settings.get_default() + sugar_theme = 'sugar-72' + if 'SUGAR_SCALING' in os.environ: + if os.environ['SUGAR_SCALING'] == '100': + sugar_theme = 'sugar-100' + settings.set_property('gtk-theme-name', sugar_theme) + settings.set_property('gtk-icon-theme-name', 'sugar') + class Test(Gtk.VBox): def __init__(self): @@ -45,6 +57,7 @@ class TestPalette(Test): class TestRunner(object): def run(self, test): + set_theme() window = Gtk.Window() window.connect('destroy', lambda w: Gtk.main_quit()) window.add(test)