Fix single click clip selection

This commit is contained in:
Mikei386
2026-06-04 10:24:57 +02:00
parent 50c1253e5c
commit 9fe40f1df6
+4
View File
@@ -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
}