fix: Mainwindow window size restore \n fixes https://github.com/deskflow/deskflow/issues/8056

This commit is contained in:
sithlord48
2025-01-07 19:39:52 -05:00
committed by Nick Bolton
parent 9a3a89efab
commit dd0812c201

View File

@ -157,7 +157,7 @@ void MainWindow::restoreWindow()
const auto &windowSize = m_AppConfig.mainWindowSize();
if (windowSize.has_value()) {
qDebug() << "restoring main window size";
resize(windowSize.value());
m_expandedSize = windowSize.value();
}
const auto &windowPosition = m_AppConfig.mainWindowPosition();