mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[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:
parent
ede60035f4
commit
f95c789f2b
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue