mirror of
https://github.com/leozide/leocad
synced 2025-02-05 08:45:55 +01:00
Fixed bug entering new file names when saving.
This commit is contained in:
parent
493ad442b2
commit
1b1b14b9b2
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ bool lcMainWindow::SaveProject(const QString& FileName)
|
|||
SaveFileName = FileName;
|
||||
else
|
||||
{
|
||||
QString SaveFileName = Project->GetFileName();
|
||||
SaveFileName = Project->GetFileName();
|
||||
|
||||
if (SaveFileName.isEmpty())
|
||||
SaveFileName = QFileInfo(QDir(lcGetProfileString(LC_PROFILE_PROJECTS_PATH)), Project->GetTitle()).absoluteFilePath();
|
||||
|
|
Loading…
Add table
Reference in a new issue