From 7cab81c193a01775d804fb037f7d26c6a6806e74 Mon Sep 17 00:00:00 2001 From: louie Date: Sun, 2 Aug 2020 18:09:03 -0700 Subject: Added option to sort entries --- draw.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'draw.c') diff --git a/draw.c b/draw.c index a7acdf1..9907276 100644 --- a/draw.c +++ b/draw.c @@ -272,6 +272,7 @@ void update_col(int mode, int hl_where){ name_len = 9; break; + default: return; } @@ -294,6 +295,7 @@ void update_col(int mode, int hl_where){ case 1: e_count = get_ecount(g[g_hover]); e = get_entries(get_ghead(g[g_hover]), e_count); + system("touch log"); fill_entries(e, e_count); mvwchgat(entry_win, y_hl, 1, entry_win->_maxx-1, A_DIM, 1, NULL); break; -- cgit