コード例 #1
0
ファイル: actions.py プロジェクト: xabiugarte/IDArling
 def update(self):
     """Check if the action should be enabled or not."""
     ida_kernwin.update_action_state(
         self._ACTION_ID, self._handler.update(None)
     )
コード例 #2
0
ファイル: actions.py プロジェクト: fcccode/IDAConnect
 def update(self):
     """
     Force to update the action's state (enabled/disabled).
     """
     ida_kernwin.update_action_state(self._ACTION_ID,
                                     self._handler.update(None))
コード例 #3
0
ファイル: actions.py プロジェクト: shuixi2013/IDArling
 def update(self):
     """Update the action's state (enabled or not)."""
     ida_kernwin.update_action_state(self._ACTION_ID,
                                     self._handler.update(None))