Win32 - Map Hotkeys dialog - fixed bug where dialog would not close by the "X" or Alt-F4
This commit is contained in:
parent
106e1ca031
commit
b40947ad71
|
@ -1,3 +1,4 @@
|
||||||
|
22-august-2009 - adelikat - Win32 - Map Hotkeys Dialog - Fixed but where "X" and Alt+F4 would not close dialog
|
||||||
22-august-2009 - adelikat - Win32 - Added a Save Config File menu item
|
22-august-2009 - adelikat - Win32 - Added a Save Config File menu item
|
||||||
12-august-2009 - adelikat - Win32 - Added a menu item to toggle to New PPU
|
12-august-2009 - adelikat - Win32 - Added a menu item to toggle to New PPU
|
||||||
10-august-2009 - adelikat - fixed bug that caused new movies be created in /movie instead of /movies
|
10-august-2009 - adelikat - fixed bug that caused new movies be created in /movie instead of /movies
|
||||||
|
|
|
@ -693,7 +693,7 @@ BOOL CALLBACK MapInputDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM
|
||||||
PopulateMappingDisplay(hwndDlg);
|
PopulateMappingDisplay(hwndDlg);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch(LOWORD(wParam))
|
switch(LOWORD(wParam))
|
||||||
{
|
{
|
||||||
case IDOK:
|
case IDOK:
|
||||||
|
@ -714,7 +714,12 @@ BOOL CALLBACK MapInputDialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case WM_CLOSE:
|
||||||
|
case WM_DESTROY:
|
||||||
|
case WM_QUIT:
|
||||||
|
EndDialog(hwndDlg, 0);
|
||||||
|
break;
|
||||||
case WM_NOTIFY:
|
case WM_NOTIFY:
|
||||||
|
|
||||||
switch(LOWORD(wParam))
|
switch(LOWORD(wParam))
|
||||||
|
|
Loading…
Reference in New Issue