Skip to content

Commit

Permalink
Merge pull request #10 from nanthony21/dev
Browse files Browse the repository at this point in the history
dumb typo fix
  • Loading branch information
nanthony21 authored Dec 7, 2021
2 parents 2798de8 + 576a99e commit bca0582
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def pasteFunc():

selectedRoiParams = [r for r in self.rois if r.selected]

if not len(selectedRoiParams) == 0: # If no rois are selected then some actions can't be performed
if len(selectedRoiParams) == 0: # If no rois are selected then some actions can't be performed
deleteAction.setEnabled(False)
moveAction.setEnabled(False)
copyAction.setEnabled(False)
Expand Down

0 comments on commit bca0582

Please sign in to comment.