Skip to content

Commit

Permalink
Fix broken delete_selected
Browse files Browse the repository at this point in the history
  • Loading branch information
bgribble committed Feb 27, 2025
1 parent 0124e21 commit ad7d9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mfp/gui/app_window_select.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ async def move_selected(self, dx, dy):

@extends(AppWindow)
async def delete_selected(self):
olist = self.selected
olist = [*self.selected]
await self.unselect_all()
for o in olist:
if o.editable:
Expand Down

0 comments on commit ad7d9b3

Please sign in to comment.