diff options
| author | Pietro Gagliardi <[email protected]> | 2014-08-26 12:52:32 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-08-26 12:52:32 -0400 |
| commit | adbe5303e7d97e439e1f1f75df23d357b037f702 (patch) | |
| tree | a9bafa99c1def93cae7afc54c3f2679445b3c0f5 /redo/uitask_windows.c | |
| parent | e7490ce49b113f4d1877de8f5ee4b40b183fbabf (diff) | |
Changed the way dialogs work so that they do real modality properly and implemented such on Windows.
Diffstat (limited to 'redo/uitask_windows.c')
| -rw-r--r-- | redo/uitask_windows.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/redo/uitask_windows.c b/redo/uitask_windows.c index 193b24f..6e5e384 100644 --- a/redo/uitask_windows.c +++ b/redo/uitask_windows.c @@ -146,6 +146,9 @@ static LRESULT CALLBACK msgwinproc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM l endModal(); EnumThreadWindows(GetCurrentThreadId(), beginEndModalAll, msgEndModal); return 0; + case msgOpenFileDone: + finishOpenFile((WCHAR *) wParam, (void *) lParam); + return 0; default: return DefWindowProcW(hwnd, uMsg, wParam, lParam); } |
