From 1c48b1945cb3a5172fc8b5ee4d4d09467be4264e Mon Sep 17 00:00:00 2001 From: eelke Date: Sat, 10 Aug 2019 18:11:00 +0200 Subject: [PATCH] Make database window come up maximized. --- pglab/MasterController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pglab/MasterController.cpp b/pglab/MasterController.cpp index 5c901aa..8576801 100644 --- a/pglab/MasterController.cpp +++ b/pglab/MasterController.cpp @@ -83,7 +83,7 @@ void MasterController::openSqlWindowForConnection(size_t connection_index) auto w = new DatabaseWindow(this, nullptr); w->setAttribute( Qt::WA_DeleteOnClose ); w->setConfig(cc); - w->show(); + w->showMaximized(); } }