From 0c918a1498974692bf00a0210bdb046941e1cbe9 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sat, 24 Sep 2022 17:24:10 +0200 Subject: [PATCH] colorschemes/default theme: apply the color defined for the selection arrows --- src/bin/colors.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/colors.c b/src/bin/colors.c index e889562d..806809c2 100644 --- a/src/bin/colors.c +++ b/src/bin/colors.c @@ -638,6 +638,11 @@ color_scheme_apply(Evas_Object *edje, CS_SET_MANY("GLOW_TXT_HIGHLIGHT", hl, main, main); CS_SET("END_SELECTION", end_sel); + CS_SET("/fg/normal/term/selection/arrow/left", end_sel); + CS_SET("/fg/normal/term/selection/arrow/down", end_sel); + CS_SET("/fg/normal/term/selection/arrow/up", end_sel); + CS_SET("/fg/normal/term/selection/arrow/right", end_sel); + CS_SET_MANY("TAB_MISSED", tab_missed_1, tab_missed_2, tab_missed_3); CS_SET_MANY("TAB_MISSED_OVER", tab_missed_over_1, tab_missed_over_2, tab_missed_over_3);