(self)
| 73 | # ── geometry ────────────────────────────────────────────────────────────── |
| 74 | |
| 75 | def boundingRect(self) -> QRectF: |
| 76 | if self._renderer is not None: |
| 77 | return QRectF(0, 0, self.display_width, self.display_height) |
| 78 | return self._natural_text_rect() |
| 79 | |
| 80 | def shape(self) -> QPainterPath: |
| 81 | path = QPainterPath() |
no test coverage detected