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