From: Nate Graham Date: Fri, 9 Apr 2021 19:29:30 +0000 (-0600) Subject: Increase default window size X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/a27b4c5c608174e0164a02275749238b423d01a5 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. --- diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index 0ff7e77e5..a126a0bf4 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();