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

Merge pull request #1212 from miere43/delete-all-right

Add "Delete All Right" command to IDE
This commit is contained in:
Brian Fiete 2021-11-29 09:27:06 -08:00 committed by GitHub
commit 223b7b9e1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 42 additions and 0 deletions

View file

@ -2409,6 +2409,12 @@ namespace IDE
//CloseWorkspace();
//FinishShowingNewWorkspace();
}
[IDECommand]
void DeleteAllRight()
{
GetActiveSourceEditWidgetContent()?.DeleteAllRight();
}
[IDECommand]
void DuplicateLine()