[SHELL32] Select 1st item after deletion of file type (#6007)

Based on KRosUser's filestypedel.patch.
- Select the first item after the user deleted a
  file type.
CORE-19325
This commit is contained in:
Katayama Hirofumi MZ 2023-11-19 22:16:03 +09:00 committed by GitHub
parent ede60035f4
commit f95c789f2b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1612,6 +1612,12 @@ FileTypesDlg_OnDelete(HWND hwndDlg)
if (MessageBoxW(hwndDlg, strRemoveExt, strTitle, MB_ICONQUESTION | MB_YESNO) == IDYES) if (MessageBoxW(hwndDlg, strRemoveExt, strTitle, MB_ICONQUESTION | MB_YESNO) == IDYES)
{ {
FileTypesDlg_RemoveExt(hwndDlg); FileTypesDlg_RemoveExt(hwndDlg);
// Select first item (Win2k3 does it)
LV_ITEMW item = { LVIF_STATE };
item.stateMask = item.state = LVIS_FOCUSED | LVIS_SELECTED;
item.iItem = 0;
ListView_SetItem(GetDlgItem(hwndDlg, IDC_FILETYPES_LISTVIEW), &item);
} }
} }