Return whether the renderer is in the process of saving to a file, rather than rendering for an on-screen buffer.
(self)
| 1844 | self._is_idle_drawing = False |
| 1845 | |
| 1846 | def is_saving(self): |
| 1847 | """ |
| 1848 | Return whether the renderer is in the process of saving |
| 1849 | to a file, rather than rendering for an on-screen buffer. |
| 1850 | """ |
| 1851 | return self._is_saving |
| 1852 | |
| 1853 | def blit(self, bbox=None): |
| 1854 | """Blit the canvas in bbox (default entire canvas).""" |
no outgoing calls
no test coverage detected