mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
LibWebView: Integrate bookmarks into the application menus and settings
This adds application menus and actions to display and manage bookmarks. These menus will be used by the UIs to generate concrete widgets.
This commit is contained in:
Notes:
github-actions[bot]
2026-03-24 16:06:28 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/2025e6e523a Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/8589 Reviewed-by: https://github.com/shannonbooth
@@ -523,10 +523,8 @@ void WebContentClient::did_change_favicon(u64 page_id, Gfx::ShareableBitmap favi
|
||||
return;
|
||||
}
|
||||
|
||||
if (auto view = view_for_page_id(page_id); view.has_value()) {
|
||||
if (view->on_favicon_change)
|
||||
view->on_favicon_change(*favicon.bitmap());
|
||||
}
|
||||
if (auto view = view_for_page_id(page_id); view.has_value())
|
||||
view->set_favicon({}, *favicon.bitmap());
|
||||
}
|
||||
|
||||
void WebContentClient::did_request_document_cookie_version_index(u64 page_id, i64 document_id, String domain)
|
||||
|
||||
Reference in New Issue
Block a user