diff options
author | raveit65 <[email protected]> | 2016-03-17 11:26:40 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-03-17 11:26:40 +0100 |
commit | 04604abdb754066c1cba0357a3b449516107d953 (patch) | |
tree | 7c6cabe92db959811920726d4132262ec5b5b8cf | |
parent | bbb428f82bf9d5d93c2e394cdf34430eec52f4b7 (diff) | |
download | caja-04604abdb754066c1cba0357a3b449516107d953.tar.bz2 caja-04604abdb754066c1cba0357a3b449516107d953.tar.xz |
icon container: restore original font color select logic
that is, before 057df2dc1d8ea67b477d696ac6feea8aaf392763
the logic itself is valid, but it was somewhat broken later in a few
attempts to fix the annoying font color bugs. so let's restore it.
-rw-r--r-- | libcaja-private/caja-icon-container.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcaja-private/caja-icon-container.c b/libcaja-private/caja-icon-container.c index 94a0ac86..e33a9c75 100644 --- a/libcaja-private/caja-icon-container.c +++ b/libcaja-private/caja-icon-container.c @@ -9424,7 +9424,7 @@ setup_label_gcs (CajaIconContainer *container) "frame_text", &frame_text, NULL); - if (frame_text /* || !eel_background_is_set(background) */) + if (frame_text || !eel_background_is_set (background)) { setup_gc_with_fg (container, LABEL_COLOR, eel_gdk_color_to_rgb (&style->text[GTK_STATE_NORMAL])); |