summaryrefslogtreecommitdiffstats
path: root/win/tkWinDialog.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-03 07:09:55 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-03 07:09:55 (GMT)
commitb8d8c08583edeba5c3f7b6bce2e13c60c2323c47 (patch)
treeffdabef266a86ffdb035d60c79d70c34592db244 /win/tkWinDialog.c
parent7fe6679283dee22f69abe4f4705fc73a45d089c6 (diff)
downloadtk-b8d8c08583edeba5c3f7b6bce2e13c60c2323c47.zip
tk-b8d8c08583edeba5c3f7b6bce2e13c60c2323c47.tar.gz
tk-b8d8c08583edeba5c3f7b6bce2e13c60c2323c47.tar.bz2
[Bug 3314770] regression - Windows file dialogs not resizable
Diffstat (limited to 'win/tkWinDialog.c')
-rw-r--r--win/tkWinDialog.c2
1 files changed, 1 insertions, 1 deletions
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;