(self)
| 658 | qt_compat._exec(qapp) |
| 659 | |
| 660 | def show(self): |
| 661 | self.window._destroying = False |
| 662 | self.window.show() |
| 663 | if mpl.rcParams['figure.raise_window']: |
| 664 | self.window.activateWindow() |
| 665 | self.window.raise_() |
| 666 | |
| 667 | def destroy(self, *args): |
| 668 | # check for qApp first, as PySide deletes it in its atexit handler |
no outgoing calls
no test coverage detected