Skip to content

Commit

Permalink
Make the delete key actually delete things
Browse files Browse the repository at this point in the history
  • Loading branch information
flustix committed Dec 2, 2023
1 parent a40bccd commit 75e45c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions fluXis.Game/Screens/Edit/Tabs/Charting/ChartingContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ public bool OnPressed(KeyBindingPressEvent<PlatformAction> e)
case PlatformAction.SelectAll:
BlueprintContainer.SelectAll();
return true;

case PlatformAction.Delete:
BlueprintContainer.SelectionHandler.DeleteSelected();
return true;
}

return false;
Expand Down

0 comments on commit 75e45c1

Please sign in to comment.