Exemplo n.º 1
0
Arquivo: gui.py Projeto: tnason/NetSeq
 def on_stop(self):
     """Cleanly exit the application"""
 
     self.gui_widget.destroy()
     
     """XXX: This brief wait allows what I assume is the Tkinter and pyo
        main loops to stop operating before Kivy attempts to quit"""
     time.sleep(.5)
     App.on_stop(self)
Exemplo n.º 2
0
 def on_stop(self):
     App.on_stop(self)
     self.analyser.stop()
Exemplo n.º 3
0
 def on_stop(self):
     App.on_stop(self)
     self.__pickle_tasks(self.root.get_tasks())
Exemplo n.º 4
0
Arquivo: main.py Projeto: drwonky/NC
 def on_stop(self):
     self.config.write()
     App.on_stop(self)
Exemplo n.º 5
0
 def on_stop(self):
     App.on_stop(self)
Exemplo n.º 6
0
 def on_stop(self):
     self.on_save()
     App.on_stop(self)