예제 #1
0
파일: gui.py 프로젝트: 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)
예제 #2
0
 def on_stop(self):
     App.on_stop(self)
     self.analyser.stop()
예제 #3
0
 def on_stop(self):
     App.on_stop(self)
     self.__pickle_tasks(self.root.get_tasks())
예제 #4
0
파일: main.py 프로젝트: drwonky/NC
 def on_stop(self):
     self.config.write()
     App.on_stop(self)
예제 #5
0
 def on_stop(self):
     App.on_stop(self)
예제 #6
0
파일: main.py 프로젝트: ponyatov/kivy
 def on_stop(self):
     self.on_save()
     App.on_stop(self)