From 9b3fa75ab2bb014bc433e76788afc4be42b3f305 Mon Sep 17 00:00:00 2001 From: Mia Herkt Date: Thu, 22 Oct 2020 00:24:41 +0200 Subject: [PATCH] Visual tools: Make X/Y rotation less sensitive --- src/visual_tool_rotatexy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/visual_tool_rotatexy.cpp b/src/visual_tool_rotatexy.cpp index 98ae6f1a0..cf62681bc 100644 --- a/src/visual_tool_rotatexy.cpp +++ b/src/visual_tool_rotatexy.cpp @@ -159,7 +159,7 @@ bool VisualToolRotateXY::InitializeHold() { } void VisualToolRotateXY::UpdateHold() { - Vector2D delta = (mouse_pos - drag_start) * 2; + Vector2D delta = (mouse_pos - drag_start) / 4; if (shift_down) delta = delta.SingleAxis();