From 5c41172c9431e63f0ec09eb88dfab807d58626f5 Mon Sep 17 00:00:00 2001 From: Michael Ripperger Date: Wed, 3 Jan 2024 10:28:45 -0600 Subject: [PATCH] Show app maximized --- noether_gui/src/tpp_app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noether_gui/src/tpp_app.cpp b/noether_gui/src/tpp_app.cpp index 0b787b13..33cb69b3 100644 --- a/noether_gui/src/tpp_app.cpp +++ b/noether_gui/src/tpp_app.cpp @@ -49,7 +49,7 @@ int main(int argc, char** argv) // Set the TPP widget as the central widget and show w.setCentralWidget(widget); - w.show(); + w.showMaximized(); return app.exec(); }