Fixed a logical error in the uiArea message filter.

This commit is contained in:
Pietro Gagliardi 2015-11-27 21:53:17 -05:00
parent 3a5a4557ab
commit 14887ad7e3
1 changed files with 1 additions and 1 deletions

View File

@ -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