cleanup, hotkeys, don't close if enter pressed (too easy to accidentally close

if pressing enter quickly during a crash)
This commit is contained in:
Glenn Maynard
2004-01-13 06:43:50 +00:00
parent a9b23e880b
commit 651e590200
2 changed files with 33 additions and 35 deletions
+1 -1
View File
@@ -791,7 +791,7 @@ BOOL APIENTRY CrashDlgProc(HWND hDlg, UINT msg, WPARAM wParam, LPARAM lParam) {
EndDialog(hDlg, FALSE);
return TRUE;
case IDOK:
EndDialog(hDlg, TRUE);
// EndDialog(hDlg, TRUE); /* don't always exit on ENTER */
return TRUE;
case IDC_VIEW_LOG:
ViewWithNotepad("../log.txt");