mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:48:12 +00:00
LibWeb: Support setting the cursor in OutOfProcessWebView
This commit is contained in:
parent
fc9225db33
commit
bedcd9cd88
7 changed files with 23 additions and 0 deletions
|
@ -229,6 +229,11 @@ void OutOfProcessWebView::notify_server_did_change_selection(Badge<WebContentCli
|
|||
request_repaint();
|
||||
}
|
||||
|
||||
void OutOfProcessWebView::notify_server_did_request_cursor_change(Badge<WebContentClient>, Gfx::StandardCursor cursor)
|
||||
{
|
||||
set_override_cursor(cursor);
|
||||
}
|
||||
|
||||
void OutOfProcessWebView::notify_server_did_layout(Badge<WebContentClient>, const Gfx::IntSize& content_size)
|
||||
{
|
||||
set_content_size(content_size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue