From a27b4c5c608174e0164a02275749238b423d01a5 Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Fri, 9 Apr 2021 13:29:30 -0600 Subject: [PATCH] Increase default window size The current default window size of 750x500 is quite small on today's screens, and results in an initial user experience of a very cramped app window. The very first action that I see from new users interacting with Dolphin is to make the window bigger. So let's do it for them by making the default window size a bit bigger ourselves. --- src/dolphinmainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 0ff7e77e55..a126a0bf4b 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -178,7 +178,7 @@ DolphinMainWindow::DolphinMainWindow() : if (firstRun) { menuBar()->setVisible(false); // Assure a proper default size if Dolphin runs the first time - resize(750, 500); + resize(760, 550); } const bool showMenu = !menuBar()->isHidden();