From 30b97af65a00e7033d1d63758c3a1b5da20ec876 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 26 Mar 2020 13:21:05 +0900 Subject: [PATCH] [qwaq] Actually send on receive/release focus messages Noticed while tracking down the proxy view switch issue. --- ruamoko/qwaq/qwaq-view.r | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ruamoko/qwaq/qwaq-view.r b/ruamoko/qwaq/qwaq-view.r index 707fd056e..caeab8286 100644 --- a/ruamoko/qwaq/qwaq-view.r +++ b/ruamoko/qwaq/qwaq-view.r @@ -274,12 +274,14 @@ updateScreenCursor (View *view) -takeFocus { state |= sfInFocus; + [onReceiveFocus respond:self]; return self; } -loseFocus { state &= ~sfInFocus; + [onReleaseFocus respond:self]; return self; }