Disable event loop integration with PyGTK. This merely sets PyOS_InputHook to NULL.
(self)
| 441 | self._current_gui = GUI_GTK |
| 442 | |
| 443 | def disable_gtk3(self): |
| 444 | """Disable event loop integration with PyGTK. |
| 445 | |
| 446 | This merely sets PyOS_InputHook to NULL. |
| 447 | """ |
| 448 | self.clear_inputhook() |
| 449 | |
| 450 | def enable_mac(self, app=None): |
| 451 | """Enable event loop integration with MacOSX. |
nothing calls this directly
no test coverage detected