예제 #1
0
 def do_action(self):
     if not self._auto_toggle:
         self.on = not self.on
     Action.do_action(self)
예제 #2
0
파일: CheckBox.py 프로젝트: mnabeelp/PyGUI
 def do_action(self):
     if not self._auto_toggle:
         self.on = not self.on
     Action.do_action(self)
예제 #3
0
 def do_action(self):
     try:
         Action.do_action(self)
     except:
         application().report_error()
예제 #4
0
	def do_action(self):
		try:
			Action.do_action(self)
		except:
			application().report_error()