Make database window come up maximized.

This commit is contained in:
eelke 2019-08-10 18:11:00 +02:00
parent 86cdcbe06a
commit 1c48b1945c

View file

@ -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();
}
}