GTK: fix last remains of legacy event handling code.

pull/420/head
whitequark 2019-05-20 21:41:08 +00:00
parent f43954cc29
commit bda3b80609
1 changed files with 2 additions and 2 deletions

View File

@ -583,8 +583,8 @@ protected:
return false; return false;
} }
if(SS.GW.KeyboardEvent(event)) { if(_receiver->onKeyboardEvent) {
return true; return _receiver->onKeyboardEvent(event);
} }
return false; return false;