(self, x)
| 824 | func(self.text) |
| 825 | |
| 826 | def begin_typing(self, x): |
| 827 | self.capturekeystrokes = True |
| 828 | # disable command keys so that the user can type without |
| 829 | # command keys causing figure to be saved, etc |
| 830 | self.reset_params = {} |
| 831 | for key in self.params_to_disable: |
| 832 | self.reset_params[key] = rcParams[key] |
| 833 | rcParams[key] = [] |
| 834 | |
| 835 | def stop_typing(self): |
| 836 | notifysubmit = False |