From 9fe40f1df654165f0b2360db92664979be29ff23 Mon Sep 17 00:00:00 2001 From: Mikei386 <44135113+Mikei386@users.noreply.github.com> Date: Thu, 4 Jun 2026 10:24:57 +0200 Subject: [PATCH] Fix single click clip selection --- Sources/GrowthLapse/ContentView.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Sources/GrowthLapse/ContentView.swift b/Sources/GrowthLapse/ContentView.swift index eb4aa3c..3483476 100644 --- a/Sources/GrowthLapse/ContentView.swift +++ b/Sources/GrowthLapse/ContentView.swift @@ -369,7 +369,11 @@ struct ContentView: View { .foregroundStyle(.secondary) } .contentShape(Rectangle()) + .onTapGesture { + selectedClipID = clip.id + } .onTapGesture(count: 2) { + selectedClipID = clip.id if clip.availableVariants.count > 1 { variantPickerClip = clip }