1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 06:47:34 +00:00

Browser: Add option to open BrowserSettings from Browser :^)

This commit is contained in:
Maciej 2022-01-31 21:55:26 +01:00 committed by Andreas Kling
parent 1606f70f0c
commit 8aa1c7f5b0
2 changed files with 11 additions and 2 deletions

View file

@ -16,6 +16,7 @@
#include "Tab.h"
#include <Applications/Browser/BrowserWindowGML.h>
#include <LibConfig/Client.h>
#include <LibCore/Process.h>
#include <LibCore/StandardPaths.h>
#include <LibCore/Stream.h>
#include <LibGUI/AboutDialog.h>
@ -274,6 +275,13 @@ void BrowserWindow::build_menus()
add_color_scheme_action("Dark", Web::CSS::PreferredColorScheme::Dark);
}
settings_menu.add_separator();
auto open_settings_action = GUI::Action::create("&Settings...", Gfx::Bitmap::try_load_from_file("/res/icons/16x16/settings.png").release_value_but_fixme_should_propagate_errors(),
[](auto&) {
Core::Process::spawn("/bin/BrowserSettings");
});
settings_menu.add_action(move(open_settings_action));
auto& debug_menu = add_menu("&Debug");
debug_menu.add_action(GUI::Action::create(
"Dump &DOM Tree", g_icon_bag.dom_tree, [this](auto&) {
@ -544,7 +552,7 @@ void BrowserWindow::config_string_did_change(String const& domain, String const&
else if (key == "Home")
Browser::g_home_url = value;
// TODO: ColorScheme
// TODO: ColorScheme
}
void BrowserWindow::config_bool_did_change(String const& domain, String const& group, String const& key, bool value)