[qwaq] Actually send on receive/release focus messages

Noticed while tracking down the proxy view switch issue.
This commit is contained in:
Bill Currie 2020-03-26 13:21:05 +09:00
parent dbb3802740
commit 30b97af65a

View file

@ -274,12 +274,14 @@ updateScreenCursor (View *view)
-takeFocus -takeFocus
{ {
state |= sfInFocus; state |= sfInFocus;
[onReceiveFocus respond:self];
return self; return self;
} }
-loseFocus -loseFocus
{ {
state &= ~sfInFocus; state &= ~sfInFocus;
[onReleaseFocus respond:self];
return self; return self;
} }