Puzzle app. Open new window only if current already has been used.

develop
Roman Telezhynskyi 2024-02-27 15:24:51 +02:00
parent 97d4e6378a
commit a138352d1c
1 changed files with 10 additions and 2 deletions

View File

@ -3552,12 +3552,20 @@ void VPMainWindow::on_actionOpen_triggered()
const QString mPath = QFileDialog::getOpenFileName(this, tr("Open file"), pathTo, filter, nullptr,
VAbstractApplication::VApp()->NativeFileDialog());
if (mPath.isEmpty())
{
return;
}
if (not mPath.isEmpty())
if (curFile.isEmpty() && !this->isWindowModified())
{
VPApplication::VApp()->MainWindow()->LoadFile(mPath);
}
else
{
VPApplication::VApp()->NewMainWindow()->LoadFile(mPath);
VPApplication::VApp()->PuzzleSettings()->SetPathManualLayouts(QFileInfo(mPath).absolutePath());
}
VPApplication::VApp()->PuzzleSettings()->SetPathManualLayouts(QFileInfo(mPath).absolutePath());
}
//---------------------------------------------------------------------------------------------------------------------