| 219 | |
| 220 | |
| 221 | int RotatePatternTool::updateDirtyRectImpl(QRectF& rect) |
| 222 | { |
| 223 | if (isDragging()) |
| 224 | { |
| 225 | rectIncludeSafe(rect, click_pos_map); |
| 226 | rectIncludeSafe(rect, constrained_pos_map); |
| 227 | angle_helper->includeDirtyRect(rect); |
| 228 | } |
| 229 | |
| 230 | return rect.isValid() ? angle_helper->getDisplayRadius() : -1; |
| 231 | } |
| 232 | |
| 233 | |
| 234 |
nothing calls this directly
no test coverage detected