1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Fixed atom deletion issue

This commit is contained in:
Brian Fiete 2020-12-25 05:22:02 -08:00
parent 2130b7d60c
commit 27a586df04
9 changed files with 133 additions and 18 deletions

View file

@ -2172,6 +2172,16 @@ namespace IDE
textPanel.EditWidget.mEditWidgetContent.DeleteSelection();
}
[IDECommand]
public void DeleteTextBackward(int count)
{
var textPanel = GetActiveTextPanel();
if (textPanel == null)
return;
for (int i < count)
textPanel.EditWidget.mEditWidgetContent.Backspace();
}
[IDECommand]
public void MarkPosition()
{