diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-03 07:12:19 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2011-08-03 07:12:19 (GMT) |
commit | 97cb297a80a8dfc25d50fbf7ca3415fbfb9a4ce0 (patch) | |
tree | 34c279d6c545afe00bcc1358116f1cc8577a70d6 | |
parent | 3e7190a1de2703085f903b3ddf2d86f3a265a0e0 (diff) | |
parent | b8d8c08583edeba5c3f7b6bce2e13c60c2323c47 (diff) | |
download | tk-97cb297a80a8dfc25d50fbf7ca3415fbfb9a4ce0.zip tk-97cb297a80a8dfc25d50fbf7ca3415fbfb9a4ce0.tar.gz tk-97cb297a80a8dfc25d50fbf7ca3415fbfb9a4ce0.tar.bz2 |
[Bug 3314770] regression - Windows file dialogs not resizable
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/tkWinDialog.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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 Don Porter <dgp@users.sourceforge.net> * changes: Updates for 8.6b2 release. 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; |