From d62ffbc630f8e14befa999d1b8ee564e4d2f3acd Mon Sep 17 00:00:00 2001 From: Beingpax Date: Mon, 11 Aug 2025 08:50:30 +0545 Subject: [PATCH] Add double-click to edit for power mode cards functionality --- VoiceInk/PowerMode/PowerModeViewComponents.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/VoiceInk/PowerMode/PowerModeViewComponents.swift b/VoiceInk/PowerMode/PowerModeViewComponents.swift index fbf33ae..4c659e8 100644 --- a/VoiceInk/PowerMode/PowerModeViewComponents.swift +++ b/VoiceInk/PowerMode/PowerModeViewComponents.swift @@ -296,7 +296,7 @@ struct ConfigurationRow: View { HStack(spacing: 4) { Image(systemName: "hand.tap") .font(.system(size: 10)) - Text("Right-click to edit/delete") + Text("Double-click to edit • Right-click for more options") .font(.caption2) } .foregroundColor(.secondary) @@ -317,6 +317,9 @@ struct ConfigurationRow: View { isHovering = hovering } } + .onTapGesture(count: 2) { + onEditConfig(config) + } .contextMenu { Button(action: { onEditConfig(config)