Przeglądaj źródła

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

Linda Kladivova 3 lat temu
rodzic
commit
199be7109d
1 zmienionych plików z 1 dodań i 1 usunięć
  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