From 14887ad7e3d44515638154bcc085063635fd7666 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 27 Nov 2015 21:53:17 -0500 Subject: [PATCH] Fixed a logical error in the uiArea message filter. --- windows/area.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/area.c b/windows/area.c index 619c13b6..00c07166 100644 --- a/windows/area.c +++ b/windows/area.c @@ -708,7 +708,7 @@ static LRESULT CALLBACK areaFilterProc(int code, WPARAM wParam, LPARAM lParam) break; // otherwise handled remains 0, as we didn't handle this } - if (handled) + if (!handled) goto callNext; // we handled it; discard the message so the dialog manager doesn't see it