summaryrefslogtreecommitdiff
path: root/redo/window_windows.c
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-07-25 15:58:24 -0400
committerPietro Gagliardi <[email protected]>2014-07-25 15:58:24 -0400
commit9ea22218ffacc8a3e5395d8670e9d62584969753 (patch)
tree70a000ba42da7ae5aad769c645d1a45e3459f42d /redo/window_windows.c
parentd515bd74c68dfef84fface6d61a6ea9264d4e70e (diff)
Implemented Tab on Windows.
Diffstat (limited to 'redo/window_windows.c')
-rw-r--r--redo/window_windows.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/redo/window_windows.c b/redo/window_windows.c
index 4380094..2b1b12d 100644
--- a/redo/window_windows.c
+++ b/redo/window_windows.c
@@ -25,6 +25,8 @@ static LRESULT CALLBACK windowWndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARA
switch (uMsg) {
case WM_COMMAND:
return forwardCommand(hwnd, uMsg, wParam, lParam);
+ case WM_NOTIFY:
+ return forwardNotify(hwnd, uMsg, wParam, lParam);
case WM_SIZE:
if (GetClientRect(hwnd, &r) == 0)
xpanic("error getting client rect for Window in WM_SIZE", GetLastError());