(self)
| 330 | return self._svg_bytes |
| 331 | |
| 332 | def display_width(self) -> int: |
| 333 | if self._natural_w: |
| 334 | return max(1, round(self._natural_w * self._scale_spin.value() / 100)) |
| 335 | return 200 |
| 336 | |
| 337 | def display_height(self) -> int: |
| 338 | if self._natural_h: |
no outgoing calls
no test coverage detected