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
1 changed files with 2 additions and 6 deletions

View File

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