summaryrefslogtreecommitdiffstats
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
parent7fe6679283dee22f69abe4f4705fc73a45d089c6 (diff)
downloadtk-b8d8c08583edeba5c3f7b6bce2e13c60c2323c47.zip
tk-b8d8c08583edeba5c3f7b6bce2e13c60c2323c47.tar.gz
tk-b8d8c08583edeba5c3f7b6bce2e13c60c2323c47.tar.bz2
[Bug 3314770] regression - Windows file dialogs not resizable
-rw-r--r--ChangeLog5
-rw-r--r--win/tkWinDialog.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f252568..9de830c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-03 Jan Nijtmans <nijtmans@users.sf.net>
+
+ * win/tkWinDialog.c: [Bug 3314770] regression - Windows file
+ dialogs not resizable
+
2011-07-28 Jan Nijtmans <nijtmans@users.sf.net>
* 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;