[PATCH] file dialog custom dialog box should be at bottom

gerard patel gerard.patel at asi.fr
Thu Apr 12 16:33:49 CDT 2001


This problem can be seen with Livepix 1.1 (www.livepix.com). The toolbar buttons used to browse
to upper level, home, etc... seem to be disabled. debugmsg +event show that the events go to
the custom dialog box.

ChangeLog:

	* dlls/commdlg/filedlg95.c
                  Set the custom dialog box to the bottom of the Z-order
-------------- next part --------------
Index: dlls/commdlg/filedlg95.c
===================================================================
RCS file: /home/wine/wine/dlls/commdlg/filedlg95.c,v
retrieving revision 1.57
diff -u -r1.57 filedlg95.c
--- dlls/commdlg/filedlg95.c	2001/03/10 19:13:59	1.57
+++ dlls/commdlg/filedlg95.c	2001/04/12 21:17:43
@@ -835,6 +835,8 @@
          SendCustomDlgNotificationMessage(hwnd,CDN_INITDONE);
       	 FILEDLG95_FillControls(hwnd, wParam, lParam);
          SendCustomDlgNotificationMessage(hwnd,CDN_SELCHANGE);
+         SetWindowPos(fodInfos->DlgInfos.hwndCustomDlg, HWND_BOTTOM,
+                      0,0,0,0, SWP_NOMOVE|SWP_NOSIZE);
          return 0;
        }
     case WM_COMMAND:
-------------- next part --------------



More information about the wine-patches mailing list