(self, event)
| 84 | update_word_list(TextBlock(bpy.context.space_data.text)) |
| 85 | |
| 86 | def update_hide(self, event): |
| 87 | if event.type in hide_event_types: |
| 88 | self.hide = True |
| 89 | if event.type in ["LEFT_ALT", "RIGHT_ALT"] and event.value == "PRESS": |
| 90 | self.hide = True |
| 91 | |
| 92 | def update_operator_selection(self, event): |
| 93 | self.move_selection_with_arrow_keys(event) |