From b8d8c08583edeba5c3f7b6bce2e13c60c2323c47 Mon Sep 17 00:00:00 2001 From: "jan.nijtmans" Date: Wed, 3 Aug 2011 07:09:55 +0000 Subject: [Bug 3314770] regression - Windows file dialogs not resizable --- ChangeLog | 5 +++++ win/tkWinDialog.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f252568..9de830c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-08-03 Jan Nijtmans + + * win/tkWinDialog.c: [Bug 3314770] regression - Windows file + dialogs not resizable + 2011-07-28 Jan Nijtmans * xlib/X11/Xutil.h: [Bug 3380684] XEmptyRegion prototype doesn't diff --git a/win/tkWinDialog.c b/win/tkWinDialog.c index 283667a..36747b0 100644 --- a/win/tkWinDialog.c +++ b/win/tkWinDialog.c @@ -735,7 +735,7 @@ GetFileNameW( ofn.lpstrFile = (WCHAR *) file; ofn.nMaxFile = TK_MULTI_MAX_PATH; ofn.Flags = OFN_HIDEREADONLY | OFN_PATHMUSTEXIST | OFN_NOCHANGEDIR - | OFN_EXPLORER | OFN_ENABLEHOOK; + | OFN_EXPLORER | OFN_ENABLEHOOK| OFN_ENABLESIZING; ofn.lpfnHook = (LPOFNHOOKPROC) OFNHookProcW; ofn.lCustData = (LPARAM) &ofnData; -- cgit v0.12 From 0726563f613388aad5a365791aa72dfea1781644 Mon Sep 17 00:00:00 2001 From: dgp Date: Wed, 3 Aug 2011 16:50:18 +0000 Subject: Bug 2891541 Merge of 8.5.8 fix from Pat Thoyts. Permit normal behaviour on Windows for a grabbed toplevel when it is the main window. --- ChangeLog | 6 ++++++ changes | 2 ++ win/tkWinWm.c | 9 ++++++++- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f28c324..5a186cf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-08-03 Don Porter + + * win/tkWinWm.c: [Bug 2891541] Merge of 8.5.8 fix from Pat Thoyts. + Permit normal behaviour on Windows for a grabbed toplevel when it + is the main window. + 2011-08-03 Jan Nijtmans * win/tkWinDialog.c: [Bug 3314770] regression - Windows file diff --git a/changes b/changes index 4bd9858..c299052 100644 --- a/changes +++ b/changes @@ -6935,4 +6935,6 @@ and -to (porter) 2011-06-17 (bug fix)[3062331] crash in unset traces (macdonald,porter) +2011-08-03 (bug fix)[2891541] fix grab behaviour for main window (thoyts) + --- Released 8.6b2, August 5, 2011 --- See ChangeLog for details --- diff --git a/win/tkWinWm.c b/win/tkWinWm.c index 859aa52..53f8ee6 100644 --- a/win/tkWinWm.c +++ b/win/tkWinWm.c @@ -7939,6 +7939,10 @@ WmProc( case WM_SYSCOMMAND: /* * If there is a grab in effect then ignore the minimize command + * unless the grab is on the main window (.). This is to permit + * applications that leave a grab on . to work normally. + * All other toplevels are deemed non-minimizable when a grab is + * present. * If there is a grab in effect and this window is outside the * grab tree then ignore all system commands. [Bug 1847002] */ @@ -7946,8 +7950,11 @@ WmProc( if (winPtr) { int cmd = wParam & 0xfff0; int grab = TkGrabState(winPtr); - if (grab != TK_GRAB_NONE && SC_MINIMIZE == cmd) + if ((SC_MINIMIZE == cmd) + && (grab == TK_GRAB_IN_TREE || grab == TK_GRAB_ANCESTOR) + && (winPtr != winPtr->mainPtr->winPtr)) { goto done; + } if (grab == TK_GRAB_EXCLUDED && !(SC_MOVE == cmd || SC_SIZE == cmd)) { goto done; -- cgit v0.12