summaryrefslogtreecommitdiffstats
path: root/win/tkWinDialog.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-03 07:12:19 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2011-08-03 07:12:19 (GMT)
commit7cbdfb659458326e7e070633ef77a0b0fe1b5c10 (patch)
tree34c279d6c545afe00bcc1358116f1cc8577a70d6 /win/tkWinDialog.c
parentd7f104ab0b894a00d438489a422b2da9511b467d (diff)
parent1666bb95721c4472aec20f876e5f197d90e7628a (diff)
downloadtk-7cbdfb659458326e7e070633ef77a0b0fe1b5c10.zip
tk-7cbdfb659458326e7e070633ef77a0b0fe1b5c10.tar.gz
tk-7cbdfb659458326e7e070633ef77a0b0fe1b5c10.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 5f54789..06372be 100644
--- a/win/tkWinDialog.c
+++ b/win/tkWinDialog.c
@@ -719,7 +719,7 @@ GetFileName(
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) OFNHookProc;
ofn.lCustData = (LPARAM) &ofnData;