Qt menu fix
Noticed when working on the add_menu() crash earlier, using a mouse
rather than the keyboard to pick an entry in the sub-sub menus for
'm O' -> 'disclose' -> {any disclosure category} didn't work properly.
The problem was in post-3.6.x menu code for the Qt interface.
This commit is contained in:
@@ -802,7 +802,7 @@ void NetHackQtMenuWindow::ChooseNone()
|
||||
itemlist[row].preselected = false; // stale for all rows
|
||||
// skip if not selectable or already unselected or fails invert_test()
|
||||
if (!itemlist[row].Selectable()
|
||||
|| !itemlist[row].selected
|
||||
|| (!itemlist[row].selected && !isSelected(row))
|
||||
|| !menuitem_invert_test(2, itemlist[row].itemflags, TRUE))
|
||||
continue;
|
||||
itemlist[row].selected = false;
|
||||
|
||||
@@ -42,7 +42,8 @@ public:
|
||||
virtual void EndMenu(const QString& prompt);
|
||||
virtual int SelectMenu(int how, MENU_ITEM_P **menu_list);
|
||||
virtual void ClipAround(int x, int y);
|
||||
virtual void PrintGlyph(int x, int y, const glyph_info *glyphinfo, const glyph_info *bkglyphinfo);
|
||||
virtual void PrintGlyph(int x, int y, const glyph_info *glyphinfo,
|
||||
const glyph_info *bkglyphinfo);
|
||||
virtual void UseRIP(int how, time_t when);
|
||||
|
||||
int nhid;
|
||||
|
||||
Reference in New Issue
Block a user