This is the mail archive of the
cygwin-xfree@cygwin.com
mailing list for the Cygwin XFree86 project.
Re: Exit Confirmation window style, change item 10 Server Test 87
- From: "Colin Harrison" <colin dot harrison at virgin dot net>
- To: <cygwin-xfree at cygwin dot com>
- Date: Thu, 29 May 2003 15:28:26 +0100
- Subject: Re: Exit Confirmation window style, change item 10 Server Test 87
- Reply-to: cygwin-xfree at cygwin dot com
Hi Harold,
The bug was the overlaying of the icon and title in the Exit Confirmation
window in Test 87.
This is the 'simple' fix that works best for me:-
---------------8<-----------
diff -ubB save_XWin.rc XWin.rc
--- save_XWin.rc 2003-05-29 11:34:35.000000000 +0100
+++ XWin.rc 2003-05-29 14:43:01.000000000 +0100
@@ -53,7 +53,7 @@
/* Exit */
EXIT_DIALOG DIALOG DISCARDABLE 32, 32, 180, 70
-STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE | WS_TABSTOP |
DS_CENTER | WS_DLGFRAME
+STYLE WS_POPUP | WS_VISIBLE | WS_TABSTOP | DS_CENTER | WS_DLGFRAME
EXSTYLE WS_EX_DLGMODALFRAME
FONT 8, "MS Sans Serif"
CAPTION "Cygwin/XFree86 - Exit?"
---------------->8-----------
I have only tested on XP.
Colin