]> git.deb.at Git - pkg/abook.git/blobdiff - estr.c
Minor tweaks
[pkg/abook.git] / estr.c
diff --git a/estr.c b/estr.c
index 2b3a1ef57b8b97d4a42d32a64860ed0c8d058de1..1939af0d81ddf4d723e8826f724ccf98471789d7 100644 (file)
--- a/estr.c
+++ b/estr.c
@@ -356,8 +356,12 @@ filesel_highlight_line(WINDOW *win, int line)
 static void
 filesel_print_list_line(int i, int line)
 {
-       if( lst[i].type == FLSL_TYPE_DIR )
+       if( lst[i].type == FLSL_TYPE_DIR ) {
+               mvwaddch(filesel_list, line, 3, 'd');
+#ifdef A_BOLD
                wattron(filesel_list, A_BOLD);
+#endif
+       }
        
        mvwaddnstr(filesel_list, line, 5, lst[i].filename, COLS - 5);
 }