Set the sugar theme name in gsettings according the scale

We need set the theme in gsettings according the scale in
the SUGAR_SCLING environment variable.

Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org>
Acked-by: Simon Schampijer <simon@laptop.org>
This commit is contained in:
Gonzalo Odiard 2011-12-07 15:52:25 -03:00 committed by Simon Schampijer
parent f05f221f79
commit 24af358275

View File

@ -272,10 +272,15 @@ class Activity(Window, Gtk.Container):
icons_path = os.path.join(get_bundle_path(), 'icons') icons_path = os.path.join(get_bundle_path(), 'icons')
Gtk.IconTheme.get_default().append_search_path(icons_path) Gtk.IconTheme.get_default().append_search_path(icons_path)
sugar_theme = 'sugar-72'
if 'SUGAR_SCALING' in os.environ:
if os.environ['SUGAR_SCALING'] == '100':
sugar_theme = 'sugar-100'
# This code can be removed when we grow an xsettings daemon (the GTK+ # This code can be removed when we grow an xsettings daemon (the GTK+
# init routines will then automatically figure out the font settings) # init routines will then automatically figure out the font settings)
settings = Gtk.Settings.get_default() settings = Gtk.Settings.get_default()
settings.set_property('gtk-theme-name', 'sugar') settings.set_property('gtk-theme-name', sugar_theme)
settings.set_property('gtk-icon-theme-name', 'sugar') settings.set_property('gtk-icon-theme-name', 'sugar')
settings.set_property('gtk-font-name', settings.set_property('gtk-font-name',
'%s %f' % (style.FONT_FACE, style.FONT_SIZE)) '%s %f' % (style.FONT_FACE, style.FONT_SIZE))