A11yStatus: fix resetting the GTK and icon themes
If the Shell is started with HighContrast enabled, it will never see another value for the GSettings keys. In that case, we just reset to the default. https://bugzilla.gnome.org/show_bug.cgi?id=642641
This commit is contained in:
parent
0064ca3582
commit
a4d3a57a1c
@ -168,9 +168,12 @@ ATIndicator.prototype = {
|
||||
if (enabled) {
|
||||
settings.set_string(KEY_GTK_THEME, HIGH_CONTRAST_THEME);
|
||||
settings.set_string(KEY_ICON_THEME, HIGH_CONTRAST_THEME);
|
||||
} else {
|
||||
} else if(!hasHC) {
|
||||
settings.set_string(KEY_GTK_THEME, gtkTheme);
|
||||
settings.set_string(KEY_ICON_THEME, iconTheme);
|
||||
} else {
|
||||
settings.reset(KEY_GTK_THEME);
|
||||
settings.reset(KEY_ICON_THEME);
|
||||
}
|
||||
});
|
||||
settings.connect('changed::' + KEY_GTK_THEME, function() {
|
||||
|
Loading…
Reference in New Issue
Block a user