commit cc9532d958c1be5d04bd7528cba0fa63a73d63f1
parent 35f4e7c78dd8e7ada289e2c1057fe3f35b2af1fd
Author: William Casarin <jb55@jb55.com>
Date: Wed, 15 Mar 2023 16:19:52 -0600
Fix zap button long press scrolling issue
Changelog-Fixed: Fix zap button preventing scrolling
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/damus/Components/ZapButton.swift b/damus/Components/ZapButton.swift
@@ -81,7 +81,7 @@ struct ZapButton: View {
self.showing_zap_customizer = true
})
- .simultaneousGesture(TapGesture().onEnded {_ in
+ .highPriorityGesture(TapGesture().onEnded {_ in
guard !zapping else {
return
}