git repos / SagoImageBrowser

commit f00af1eb

Poul Sander · 2026-02-23 19:17
f00af1eb7e98be2537130b64d7b8b3c7cbf42c84 patch · browse files
parent 3968465e97cf4ff7285ff17620da3c28d7591af4

Start maximised by default

Changed files

M src/main.cpp before
diff --git a/src/main.cpp b/src/main.cpp index 6ce4d29..71f4eb5 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -6,8 +6,7 @@ int main(int argc, char *argv[])
QApplication app(argc, argv);
MainWindow w;
- w.resize(1200, 700);
- w.show();
+ w.showMaximized();
return app.exec();
}