diff --git a/croppa/main.py b/croppa/main.py index eb4d200..a50e759 100644 --- a/croppa/main.py +++ b/croppa/main.py @@ -3468,7 +3468,7 @@ class VideoEditor: # Check if click is within 10px of template center distance = ((raw_x - center_x) ** 2 + (raw_y - center_y) ** 2) ** 0.5 - if distance <= 10: + if distance <= 40: self.remove_template(i) # Pass index instead of ID self.save_state() return