Desktop: Support cursor icon change (#3223)

* browser console message forwarding

* replace target to make it easy to identify browser console messages

* use warn as per review comment

* cursor icon change

* fix win build
This commit is contained in:
Timon
2025-09-25 11:23:19 +00:00
committed by GitHub
parent b4be616de0
commit 04a2452333
5 changed files with 94 additions and 12 deletions
@@ -19,8 +19,8 @@ impl<H: CefEventHandler> BrowserProcessClientImpl<H> {
Self {
object: std::ptr::null_mut(),
render_handler,
event_handler,
display_handler: DisplayHandler::new(DisplayHandlerImpl::new()),
event_handler: event_handler.clone(),
display_handler: DisplayHandler::new(DisplayHandlerImpl::new(event_handler)),
}
}
}