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

BrowserSettings: Add setting for search engine

This commit is contained in:
Sam Atkins 2021-11-25 12:26:54 +00:00 committed by Andreas Kling
parent e927048754
commit 11466c5316
4 changed files with 152 additions and 0 deletions

View file

@ -19,6 +19,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
Config::pledge_domains("Browser");
TRY(Core::System::unveil("/res", "r"));
TRY(Core::System::unveil("/home", "r"));
TRY(Core::System::unveil(nullptr, nullptr));
auto app_icon = GUI::Icon::default_icon("app-browser");