diff options
author | adnano <me@adnano.co> | 2024-02-26 15:05:37 -0500 |
---|---|---|
committer | adnano <me@adnano.co> | 2024-02-26 15:05:37 -0500 |
commit | da25fbfb275e5f9ffa7fff3ff1cd1d6f16c652b1 (patch) | |
tree | 7bda0aefa2f5085739bcffe6ce2b9f4e0927aace | |
parent | 7284f5958bea340e25598562821b73db3c26ee63 (diff) | |
download | wmenu-da25fbfb275e5f9ffa7fff3ff1cd1d6f16c652b1.tar.gz |
Don't set selection if there are no pages
-rw-r--r-- | main.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) { |