Explorar el Código

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

Linda Kladivova hace 3 años
padre
commit
e146fdb1f0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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