about summary refs log tree commit diff stats
path: root/src/ui/titlebar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/titlebar.c')
-rw-r--r--src/ui/titlebar.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ui/titlebar.c b/src/ui/titlebar.c
index fabcd410..14a73819 100644
--- a/src/ui/titlebar.c
+++ b/src/ui/titlebar.c
@@ -225,12 +225,15 @@ _show_scrolled(ProfWin *current)
 {
     if (current && current->layout->paged == 1) {
         int bracket_attrs = theme_attrs(THEME_TITLE_BRACKET);
+        int scrolled_attrs = theme_attrs(THEME_TITLE_SCROLLED);
 
         wattron(win, bracket_attrs);
         wprintw(win, "[");
         wattroff(win, bracket_attrs);
 
+        wattron(win, scrolled_attrs);
         wprintw(win, "SCROLLED");
+        wattroff(win, scrolled_attrs);
 
         wattron(win, bracket_attrs);
         wprintw(win, "]");