about summary refs log tree commit diff stats
path: root/src/ui/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/window.c')
-rw-r--r--src/ui/window.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index d44795d5..9c508e2a 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -1698,10 +1698,16 @@ win_print_separator(ProfWin *window)
 {
     int cols = getmaxx(window->layout->win);
 
+    wbkgdset(window->layout->win, theme_attrs(THEME_TRACKBAR));
+    wattron(window->layout->win, theme_attrs(THEME_TRACKBAR));
+
     int i;
     for (i=1; i<cols; i++) {
         wprintw(window->layout->win, "-");
     }
+
+    wattroff(window->layout->win, theme_attrs(THEME_TRACKBAR));
+
     wprintw(window->layout->win, "\n");
 }