mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:44:59 +00:00
Ladybird+LibWebView: Migrate input completions to LibWebView callbacks
This commit is contained in:
parent
5116e97a9d
commit
edec5b1d91
9 changed files with 9 additions and 21 deletions
|
@ -380,7 +380,8 @@ void WebContentClient::did_request_file(DeprecatedString const& path, i32 reques
|
|||
|
||||
void WebContentClient::did_finish_handling_input_event(bool event_was_accepted)
|
||||
{
|
||||
m_view.notify_server_did_finish_handling_input_event(event_was_accepted);
|
||||
if (m_view.on_finish_handling_input_event)
|
||||
m_view.on_finish_handling_input_event(event_was_accepted);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue