]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Increase default window size
authorNate Graham <nate@kde.org>
Fri, 9 Apr 2021 19:29:30 +0000 (13:29 -0600)
committerNate Graham <nate@kde.org>
Mon, 19 Apr 2021 02:18:53 +0000 (02:18 +0000)
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

index 0ff7e77e55674ce6a57adfb9cfd2e2457f349907..a126a0bf4bd8102f590a32d39cca1158df5b2609 100644 (file)
@@ -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();