(self, event: QMouseEvent)
| 149 | super().mouseMoveEvent(event) |
| 150 | |
| 151 | def mouseReleaseEvent(self, event: QMouseEvent): |
| 152 | if self._is_resizing: |
| 153 | self._is_resizing = False |
| 154 | # Do not snap to content size; respect the user's manual resize. |
| 155 | self._update_layout() |
| 156 | self.update() |
| 157 | else: |
| 158 | super().mouseReleaseEvent(event) |
| 159 | |
| 160 | # --- GUI & Layout --- |
| 161 |
nothing calls this directly
no test coverage detected