1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Close AutoComplete without removing cursors

This commit is contained in:
Chernyavsky Andrey 2025-05-18 17:46:26 +05:00
parent 85dcba200f
commit 5d72a7bdbd
2 changed files with 10 additions and 2 deletions

View file

@ -7322,5 +7322,13 @@ namespace IDE.ui
RehupLineCoords(animIdx, animLines);
}
public override void RemoveSecondaryTextCursors(bool force = true)
{
if ((!force) && (mAutoComplete != null))
return;
base.RemoveSecondaryTextCursors(force);
}
}
}