# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1057133918 0 # Node ID 768f3546c4b533d66bf06a0404db546c87a8ba5c # Parent e6b00c3e5086c8ca0f1384339ef56a01b33391c1 Don't make message boxes system modal on OS/2, it is very annoying. diff -r e6b00c3e5086 -r 768f3546c4b5 os2/dw.c --- a/os2/dw.c Wed Jun 25 04:43:33 2003 +0000 +++ b/os2/dw.c Wed Jul 02 08:18:38 2003 +0000 @@ -3359,7 +3359,7 @@ vsprintf(outbuf, format, args); va_end(args); - rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, outbuf, title, 0, flags | MB_MOVEABLE | MB_SYSTEMMODAL); + rc = WinMessageBox(HWND_DESKTOP, HWND_DESKTOP, outbuf, title, 0, flags | MB_MOVEABLE); if(rc == MBID_OK) return DW_MB_RETURN_OK; else if(rc == MBID_YES)