from <Someone>
In item-selection menus, as you know one can press "=" to select all rings, say. This doesn't work if the letters run out before you get to the rings, however (because there are so many items). Menu code did not check group accelerators on items without assigned letters (if the letters run out). Fixed.
This commit is contained in:
@@ -141,8 +141,10 @@ int mswin_menu_window_select_menu (HWND hWnd, int how, MENU_ITEM_P ** _selected)
|
||||
|
||||
next_char ++;
|
||||
}
|
||||
}
|
||||
|
||||
/* collect group accelerators */
|
||||
/* collect group accelerators */
|
||||
for( i=0; i<data->menu.size; i++) {
|
||||
if( data->how != PICK_NONE ) {
|
||||
if( data->menu.items[i].group_accel &&
|
||||
!strchr(data->menu.gacc, data->menu.items[i].group_accel) ) {
|
||||
|
||||
Reference in New Issue
Block a user