Browse Source

wxGUI/workspace: fix for missing argument (#1637)

Linda Kladivova 3 years ago
parent
commit
e146fdb1f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/lmgr/workspace.py

+ 1 - 1
gui/wxpython/lmgr/workspace.py

@@ -473,7 +473,7 @@ class WorkspaceManager:
                     if not self.workspaceFile:
                         self.SaveAs()
                     else:
-                        self.SaveToFile()
+                        self.SaveToFile(self.workspaceFile)
                 elif ret == wx.ID_CANCEL:
                     return False
         return True