diff options
author | Andreas Kling <kling@serenityos.org> | 2022-03-26 20:49:42 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-03-26 20:49:42 +0100 |
commit | 80f1749196a98b128ae857e2b6e0f596fc0feb77 (patch) | |
tree | 37744f10972e19e5cfd124c037e68935817dbdee /Userland/Applications/Browser | |
parent | 1883efe0109a183a5c005de24f9710e165bb0fe4 (diff) | |
download | serenity-80f1749196a98b128ae857e2b6e0f596fc0feb77.zip |
Browser: Make the main browser window a little bit bigger by default
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r-- | Userland/Applications/Browser/BrowserWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Browser/BrowserWindow.cpp b/Userland/Applications/Browser/BrowserWindow.cpp index f01c03fdac..60c849626b 100644 --- a/Userland/Applications/Browser/BrowserWindow.cpp +++ b/Userland/Applications/Browser/BrowserWindow.cpp @@ -64,7 +64,7 @@ BrowserWindow::BrowserWindow(CookieJar& cookie_jar, URL url) auto app_icon = GUI::Icon::default_icon("app-browser"); m_bookmarks_bar = Browser::BookmarksBarWidget::construct(Browser::bookmarks_file_path(), true); - resize(640, 480); + resize(730, 560); set_icon(app_icon.bitmap_for_size(16)); set_title("Browser"); |