We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dadcfd0 commit 3a97c6aCopy full SHA for 3a97c6a
src/Avalonia.Controls/Platform/InProcessDragSource.cs
@@ -202,11 +202,11 @@ void CheckDraggingAccepted(RawInputModifiers changedMouseButton)
202
case RawPointerEventType.RightButtonUp:
203
CheckDraggingAccepted(RawInputModifiers.RightMouseButton); break;
204
case RawPointerEventType.Move:
205
+ e.Handled = true;
206
var mods = e.InputModifiers & MOUSE_INPUTMODIFIERS;
207
if (_initialInputModifiers.Value != mods)
208
{
209
CancelDragging();
- e.Handled = true;
210
return;
211
}
212
0 commit comments