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:
parent
2130b7d60c
commit
27a586df04
9 changed files with 133 additions and 18 deletions
|
@ -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()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue