changeset 458:768f3546c4b5

Don't make message boxes system modal on OS/2, it is very annoying.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Wed, 02 Jul 2003 08:18:38 +0000
parents e6b00c3e5086
children 1a938804ef01
files os2/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)