From cd9c0e880a6f7df77b6314b0ee1197e4c42a9796 Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 1 Sep 2018 11:16:08 -0400 Subject: [PATCH] adjust wizidentify title and prompt --- src/invent.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/invent.c b/src/invent.c index ea7868e1d..25280839b 100644 --- a/src/invent.c +++ b/src/invent.c @@ -2593,6 +2593,9 @@ long *out_cnt; char prompt[QBUFSZ]; unid_cnt = count_unidentified(invent); + add_menu(win, NO_GLYPH, &any, 0, 0, ATR_NONE, + "Debug Identify", + MENU_UNSELECTED); if (!unid_cnt) { add_menu(win, NO_GLYPH, &any, 0, 0, ATR_NONE, "(all items are permanently identified already)", @@ -2604,10 +2607,10 @@ long *out_cnt; it could be ambiguous as a selector but the only time it is wanted is in case where no item is being selected */ Sprintf(prompt, - "Select any to identify permanently (%s for %s %d bolded item%s)", - visctrl(iflags.override_ID), - (unid_cnt == 1) ? "the" : "all", unid_cnt, - (unid_cnt > 1) ? "s" : ""); + "Select %sthe %d bolded item%s to permanently identify (%s for all)", + (unid_cnt == 1) ? "": "any of ", unid_cnt, + (unid_cnt > 1) ? "s" : "", + visctrl(iflags.override_ID)); add_menu(win, NO_GLYPH, &any, '_', iflags.override_ID, ATR_NONE, prompt, MENU_UNSELECTED); wizid = TRUE; -- 2.40.0