コード例 #1
0
ファイル: CheckBox.py プロジェクト: rceballos98/hapticJacket
 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()