aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradnano <me@adnano.co>2024-02-26 15:05:37 -0500
committeradnano <me@adnano.co>2024-02-26 15:05:37 -0500
commitda25fbfb275e5f9ffa7fff3ff1cd1d6f16c652b1 (patch)
tree7bda0aefa2f5085739bcffe6ce2b9f4e0927aace
parent7284f5958bea340e25598562821b73db3c26ee63 (diff)
downloadwmenu-da25fbfb275e5f9ffa7fff3ff1cd1d6f16c652b1.tar.gz
Don't set selection if there are no pages
-rw-r--r--main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.c b/main.c
index fc9438b..9e67f7f 100644
--- a/main.c
+++ b/main.c
@@ -236,7 +236,9 @@ static void match_items(struct menu *menu) {
}
page_items(menu);
- menu->sel = menu->pages->first;
+ if (menu->pages) {
+ menu->sel = menu->pages->first;
+ }
}
static void insert(struct menu *menu, const char *s, ssize_t n) {