We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e26dab commit c25b9ceCopy full SHA for c25b9ce
app/gui/qt/mainwindow.cpp
@@ -1977,6 +1977,7 @@ void MainWindow::readSettings() {
1977
docsplit->restoreState(settings.value("docsplitState").toByteArray());
1978
1979
restoreState(settings.value("windowState").toByteArray());
1980
+ restoreGeometry(settings.value("windowGeom").toByteArray());
1981
1982
}
1983
@@ -2013,6 +2014,7 @@ void MainWindow::writeSettings()
2013
2014
2015
settings.setValue("docsplitState", docsplit->saveState());
2016
settings.setValue("windowState", saveState());
2017
+ settings.setValue("windowGeom", saveGeometry());
2018
2019
2020
void MainWindow::loadFile(const QString &fileName, SonicPiScintilla* &text)
0 commit comments