┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate Graham <[email protected]>2021-04-09 13:29:30 -0600
committerNate Graham <[email protected]>2021-04-19 02:18:53 +0000
commita27b4c5c608174e0164a02275749238b423d01a5 (patch)
tree1b55f3ef18f8591feeb476a70472be68daba1e36
parent4f4e3d392c9645e3d43c362af72e2066430890f6 (diff)
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.
-rw-r--r--src/dolphinmainwindow.cpp2
1 files changed, 1 insertions, 1 deletions
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();