1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed issue right-clicking on selected text

This commit is contained in:
Brian Fiete 2020-07-01 07:45:33 -07:00
parent a48f6b43c1
commit 9f3d025ab5

View file

@ -818,7 +818,7 @@ namespace Beefy.widgets
if (mMouseFlags == 0)
{
mDragSelectionUnion = null;
if (mDragSelectionKind == .ClickedInside)
if ((mDragSelectionKind == .ClickedInside) && (btn == 0))
mSelection = EditSelection();
mDragSelectionKind = .None;
}