From bfb9ed54d9ec7eb50c85f6e1a3e969c69e779eaa Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Fri, 26 Sep 2025 19:39:53 +0200 Subject: [PATCH] Bigger template aoe --- croppa/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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