(self)
| 375 | return self._svg_bytes |
| 376 | |
| 377 | def display_width(self) -> int: |
| 378 | if self._natural_w: |
| 379 | return max(1, round(self._natural_w * self._scale_spin.value() / 100)) |
| 380 | return 200 |
| 381 | |
| 382 | def display_height(self) -> int: |
| 383 | if self._natural_h: |
no outgoing calls
no test coverage detected