Fixed a logical error in the uiArea message filter.
This commit is contained in:
parent
3a5a4557ab
commit
14887ad7e3
|
@ -708,7 +708,7 @@ static LRESULT CALLBACK areaFilterProc(int code, WPARAM wParam, LPARAM lParam)
|
||||||
break;
|
break;
|
||||||
// otherwise handled remains 0, as we didn't handle this
|
// otherwise handled remains 0, as we didn't handle this
|
||||||
}
|
}
|
||||||
if (handled)
|
if (!handled)
|
||||||
goto callNext;
|
goto callNext;
|
||||||
|
|
||||||
// we handled it; discard the message so the dialog manager doesn't see it
|
// we handled it; discard the message so the dialog manager doesn't see it
|
||||||
|
|
Loading…
Reference in New Issue