summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Steiner <jimmac@gmail.com>2022-03-17 09:35:50 +0100
committerFlorian Müllner <fmuellner@gnome.org>2022-03-30 17:11:37 +0200
commite831a9240d626721d7ac0d0b44677ee960b010e1 (patch)
treeb07edfee10421831f816900b33438b2d88371439
parentf2c14a52071c1c73f87f020ff966d956737c085d (diff)
downloadgnome-shell-e831a9240d626721d7ac0d0b44677ee960b010e1.tar.gz
HC: Do not set icon theme from gnome-icon-theme-extra
- High contrast icons are regular symbolic icons Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2414 Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2243>
-rw-r--r--src/st/st-settings.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/st/st-settings.c b/src/st/st-settings.c
index c7db08b9c..839171b8a 100644
--- a/src/st/st-settings.c
+++ b/src/st/st-settings.c
@@ -183,10 +183,7 @@ st_settings_get_property (GObject *object,
g_value_set_boolean (value, settings->high_contrast);
break;
case PROP_GTK_ICON_THEME:
- if (settings->high_contrast)
- g_value_set_string (value, "HighContrast");
- else
- g_value_set_string (value, settings->gtk_icon_theme);
+ g_value_set_string (value, settings->gtk_icon_theme);
break;
case PROP_MAGNIFIER_ACTIVE:
g_value_set_boolean (value, settings->magnifier_active);