summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouie Shprung <lshprung@tutanota.com>2024-08-30 14:36:35 -0400
committerLouie Shprung <lshprung@tutanota.com>2024-08-30 14:36:35 -0400
commita77f5393a584338561f217d3f87832e910bf937a (patch)
tree3f63f0fb21c06943259b6b3986a7d5844c16b133
parentc53c16b6e606e16c7db492d05a8ed56574aaf3f9 (diff)
Reenable caching
-rw-r--r--src/draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/draw.c b/src/draw.c
index 4dd5d75..7303ff6 100644
--- a/src/draw.c
+++ b/src/draw.c
@@ -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);