Apply h_flip / v_flip to the item and counter-transform all labels.
(self)
| 542 | ) |
| 543 | |
| 544 | def apply_transform(self) -> None: |
| 545 | """Apply h_flip / v_flip to the item and counter-transform all labels.""" |
| 546 | self.setTransform(self._flip_transform()) |
| 547 | ct = self._flip_transform() |
| 548 | for lbl in self._labels.values(): |
| 549 | lbl.setTransform(ct) |
| 550 | |
| 551 | # ── property helpers ────────────────────────────────────────────────────── |
| 552 |
no test coverage detected