From f22a71509b8f8fc433bd98759ce312795bfc209d Mon Sep 17 00:00:00 2001 From: Cristhofer Marques Date: Thu, 13 Oct 2022 01:12:38 -0300 Subject: [PATCH] fix value box sliding --- Source/Editor/GUI/Input/ValueBox.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/GUI/Input/ValueBox.cs b/Source/Editor/GUI/Input/ValueBox.cs index b818c56d5..0d1cbd356 100644 --- a/Source/Editor/GUI/Input/ValueBox.cs +++ b/Source/Editor/GUI/Input/ValueBox.cs @@ -259,7 +259,7 @@ namespace FlaxEditor.GUI.Input /// public override void OnMouseMove(Float2 location) { - if (_isSliding) + if (_isSliding && !RootWindow.Window.IsHorizontalFlippingMouse) { // Update sliding var slideLocation = location + Root.TrackingMouseOffset;