diff options
author | louie <lshprung@yahoo.com> | 2020-08-02 18:09:03 -0700 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-08-02 18:09:03 -0700 |
commit | 7cab81c193a01775d804fb037f7d26c6a6806e74 (patch) | |
tree | ba6049ca4c3243496bcd46c1f5639d8f69591e7a /draw.c | |
parent | 2ee23565a15bd969828db7442f2f8b4902d5e261 (diff) |
Added option to sort entries
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |