From 9fd28fb8526d382fee25f0deef9fe941e018314f Mon Sep 17 00:00:00 2001 From: Tangles Date: Sat, 29 Dec 2018 01:32:45 +1100 Subject: [PATCH] curses - fix count selection not working for PICK_ONE menus. eg: d2b would drop 2 of item b, but using d* to pick from a menu and then selecting 2b would ignore the count and just drop the whole stack. --- win/curses/cursdial.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/win/curses/cursdial.c b/win/curses/cursdial.c index a6e3d3a3e..57efba990 100644 --- a/win/curses/cursdial.c +++ b/win/curses/cursdial.c @@ -1143,6 +1143,7 @@ menu_get_selections(WINDOW * win, nhmenu *menu, int how) curpage = menu_operation(win, menu, INVERT, 0); break; } + /* FallThrough */ default: if (isdigit(curletter)) { count = curses_get_count(curletter - '0'); @@ -1255,6 +1256,8 @@ menu_get_selections(WINDOW * win, nhmenu *menu, int how) if (how == PICK_ONE) { menu_clear_selections(menu); menu_select_deselect(win, menu_item_ptr, SELECT); + if (count) + menu_item_ptr->count = count; num_selected = 1; dismiss = TRUE; break;