Beremiz.py
changeset 509 aa5645a25d64
parent 505 7f38c773427b
child 513 feb2acb04070
equal deleted inserted replaced
508:73ecb803d8af 509:aa5645a25d64
  1399     
  1399     
  1400     def OnSaveProjectMenu(self, event):
  1400     def OnSaveProjectMenu(self, event):
  1401         if self.PluginRoot is not None:
  1401         if self.PluginRoot is not None:
  1402             self.PluginRoot.SaveProject()
  1402             self.PluginRoot.SaveProject()
  1403             self.RefreshAll()
  1403             self.RefreshAll()
  1404             self.RefreshTitle()
  1404             self._Refresh(TITLE, FILEMENU)
  1405     
  1405     
  1406     def OnSaveProjectAsMenu(self, event):
  1406     def OnSaveProjectAsMenu(self, event):
  1407         if self.PluginRoot is not None:
  1407         if self.PluginRoot is not None:
  1408             self.PluginRoot.SaveProjectAs()
  1408             self.PluginRoot.SaveProjectAs()
  1409             self.RefreshAll()
  1409             self.RefreshAll()
  1410             self.RefreshTitle()
  1410             self._Refresh(TITLE, FILEMENU)
  1411         event.Skip()
  1411         event.Skip()
  1412     
  1412     
  1413     def OnPropertiesMenu(self, event):
  1413     def OnPropertiesMenu(self, event):
  1414         self.ShowProperties()
  1414         self.ShowProperties()
  1415     
  1415