Use bold forward arrowhead for current

This commit is contained in:
Arun Prakash Jana 2022-04-26 04:26:01 +05:30
parent dc16ca2340
commit cc965d1c2d
No known key found for this signature in database
GPG key ID: A75979F35C080412

View file

@ -6359,13 +6359,9 @@ static void statusbar(char *path)
static inline void markhovered(void) static inline void markhovered(void)
{ {
if (cfg.showdetail && ndents) { /* Reversed block for hovered entry */ if (cfg.showdetail && ndents) { /* Bold forward arrowhead */
tocursor(); tocursor();
#ifdef ICONS_ENABLED addch('>' | A_BOLD);
addstr(MD_ARROW_FORWARD);
#else
addch(' ' | A_REVERSE);
#endif
} }
} }