mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWebView+WebContent: Make the hovered node retrieval IPC async
This commit is contained in:
committed by
Andreas Kling
parent
760ba5932b
commit
1eba170d03
Notes:
sideshowbarker
2024-07-17 18:46:30 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/1eba170d03 Pull-request: https://github.com/SerenityOS/serenity/pull/22504
@@ -146,9 +146,9 @@ void ViewImplementation::clear_inspected_dom_node()
|
||||
inspect_dom_node(0, {});
|
||||
}
|
||||
|
||||
i32 ViewImplementation::get_hovered_node_id()
|
||||
void ViewImplementation::get_hovered_node_id()
|
||||
{
|
||||
return client().get_hovered_node_id();
|
||||
client().async_get_hovered_node_id();
|
||||
}
|
||||
|
||||
void ViewImplementation::set_dom_node_text(i32 node_id, String text)
|
||||
|
||||
Reference in New Issue
Block a user