summaryrefslogtreecommitdiff
path: root/src/include/draw.h
diff options
context:
space:
mode:
authorLouie S <louie@example.com>2023-05-09 18:39:36 -0700
committerLouie S <louie@example.com>2023-05-09 18:39:36 -0700
commit2a790c9b633f72a1b0a106fc72d7587aa08d4bcb (patch)
tree8e8707c8055b2b80cbb7f133139d6f00341b6a04 /src/include/draw.h
parent14a6e82cc82e8c1802c0d468c6b32553d56099a6 (diff)
Change how e_hover and e_offset are managed; cache e_hover and e_offset as array
Diffstat (limited to 'src/include/draw.h')
-rw-r--r--src/include/draw.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/draw.h b/src/include/draw.h
index 0a6baba..387ced3 100644
--- a/src/include/draw.h
+++ b/src/include/draw.h
@@ -6,7 +6,7 @@
#define BUF_LEN 1024
extern int g_hover;
-extern int e_hover;
+extern int *e_hover;
extern struct group **g;
extern struct entry **e;