mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 08:30:25 +02:00
Auto ctor fixes
This commit is contained in:
parent
87f3aa0335
commit
44ecb92315
12 changed files with 221 additions and 127 deletions
|
@ -4474,7 +4474,16 @@ namespace IDE.ui
|
|||
|
||||
if (wantCursorPos != -1)
|
||||
{
|
||||
mSelection = null;
|
||||
if (mWidgetWindow.IsKeyDown(.Shift))
|
||||
{
|
||||
if (mSelection == null)
|
||||
mSelection = .(CursorTextPos, wantCursorPos);
|
||||
else
|
||||
mSelection.ValueRef.mEndPos = (.)wantCursorPos;
|
||||
}
|
||||
else
|
||||
mSelection = null;
|
||||
|
||||
CursorTextPos = wantCursorPos;
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue