(self)
| 146 | return self._path_edit.text().strip() |
| 147 | |
| 148 | def image_width(self) -> int: |
| 149 | if self._natural_w: |
| 150 | return max(1, round(self._natural_w * self._scale_spin.value() / 100)) |
| 151 | return 200 |
| 152 | |
| 153 | def image_height(self) -> int: |
| 154 | if self._natural_h: |
no outgoing calls
no test coverage detected