(self)
| 78 | return self._natural_text_rect() |
| 79 | |
| 80 | def shape(self) -> QPainterPath: |
| 81 | path = QPainterPath() |
| 82 | path.addRect(self.boundingRect()) |
| 83 | return path |
| 84 | |
| 85 | def _natural_text_rect(self) -> QRectF: |
| 86 | hdr_font = QFont(COMP_REFDES_FONT_FAMILY) |
nothing calls this directly
no test coverage detected