1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

Base+Browser: Add browser icons

Add local storage and style sheet icons. I also noticed the name of the
DOM tree icon needed updated (tree => dom_tree).
This commit is contained in:
electrikmilk 2022-02-09 13:57:50 -05:00 committed by Linus Groh
parent 3bfcd7b52d
commit 133a30c8b7
4 changed files with 10 additions and 6 deletions

View file

@ -205,7 +205,7 @@ void BrowserWindow::build_menus()
m_view_source_action->set_status_tip("View source code of the current page");
m_inspect_dom_tree_action = GUI::Action::create(
"Inspect &DOM Tree", { Mod_None, Key_F12 }, g_icon_bag.tree, [this](auto&) {
"Inspect &DOM Tree", { Mod_None, Key_F12 }, g_icon_bag.dom_tree, [this](auto&) {
active_tab().show_inspector_window(Tab::InspectorTarget::Document);
},
this);
@ -279,7 +279,7 @@ void BrowserWindow::build_menus()
auto& debug_menu = add_menu("&Debug");
debug_menu.add_action(GUI::Action::create(
"Dump &DOM Tree", g_icon_bag.tree, [this](auto&) {
"Dump &DOM Tree", g_icon_bag.dom_tree, [this](auto&) {
active_tab().m_web_content_view->debug_request("dump-dom-tree");
},
this));
@ -294,7 +294,7 @@ void BrowserWindow::build_menus()
},
this));
debug_menu.add_action(GUI::Action::create(
"Dump &Style Sheets", [this](auto&) {
"Dump &Style Sheets", g_icon_bag.filetype_css, [this](auto&) {
active_tab().m_web_content_view->debug_request("dump-style-sheets");
},
this));
@ -306,7 +306,7 @@ void BrowserWindow::build_menus()
if (tab.on_dump_cookies)
tab.on_dump_cookies();
}));
debug_menu.add_action(GUI::Action::create("Dump Loc&al Storage", [this](auto&) {
debug_menu.add_action(GUI::Action::create("Dump Loc&al Storage", g_icon_bag.local_storage, [this](auto&) {
active_tab().m_web_content_view->debug_request("dump-local-storage");
}));
debug_menu.add_separator();