diff options
author | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 14:36:35 -0400 |
---|---|---|
committer | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 14:36:35 -0400 |
commit | a77f5393a584338561f217d3f87832e910bf937a (patch) | |
tree | 3f63f0fb21c06943259b6b3986a7d5844c16b133 | |
parent | c53c16b6e606e16c7db492d05a8ed56574aaf3f9 (diff) |
Reenable caching
-rw-r--r-- | src/draw.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -97,8 +97,8 @@ int main(int argc, char **argv){ e_hover = calloc(g_count, sizeof(int)); e_offset = calloc(g_count, sizeof(int)); - //load cached data - //load_cache(g_count, &g_hover, &e_hover, &e_offset, &true_hover, cfg_path); + // load cached data + load_cache(g_count, &g_hover, &e_hover, &e_offset, &true_hover, cfg_path); //reopen stdout for drawing menu freopen("/dev/tty", "w", stdout); |