From 9d0fb99e3d690e53d51dd400d519512f203e98a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Sat, 29 Mar 2025 15:13:08 +0100 Subject: [PATCH] Fixed mouse picking after gizmo usage (and discovered more gizmo bugs...) --- GlitchyEditor/src/Handles.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GlitchyEditor/src/Handles.bf b/GlitchyEditor/src/Handles.bf index e781e61..d486c02 100644 --- a/GlitchyEditor/src/Handles.bf +++ b/GlitchyEditor/src/Handles.bf @@ -33,7 +33,7 @@ static class Handles #unwarn bool result = ImGuizmo.Manipulate((.)&View, (.)&Projection, gizmoType, globalGizmo ? .WORLD : .LOCAL, (.)&transform, null, _snap.HasValue ? (.)&_snap : null); - _usedGizmo |= ImGuizmo.IsUsing(); + _usedGizmo = ImGuizmo.IsUsing(); return result; }