Change "are you sure you want to close this window" default back to what it
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Sun, 20 Feb 2005 23:26:47 +0000 (23:26 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Sun, 20 Feb 2005 23:26:47 +0000 (23:26 +0000)
was ("yes"). Partly because it was inconsistent with gtkdlg.c, and partly
because it was annoying me.

git-svn-id: svn://svn.tartarus.org/sgt/putty@5371 cda61777-01e9-0310-a592-d414129be87e

windows/window.c

index 9d213c7..b3d350b 100644 (file)
@@ -1860,7 +1860,7 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT message,
            if (!cfg.warn_on_close || session_closed ||
                MessageBox(hwnd,
                           "Are you sure you want to close this session?",
-                          str, MB_ICONWARNING | MB_OKCANCEL | MB_DEFBUTTON2)
+                          str, MB_ICONWARNING | MB_OKCANCEL | MB_DEFBUTTON1)
                == IDOK)
                DestroyWindow(hwnd);
            sfree(str);