iOS client for Grain grain.social
ios photography atproto
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: enlarge gallery kebab button hit area to prevent mis-taps

Expanded from 32x32 to 44x44 and use highPriorityGesture so the
button wins over the parent row's profile tap gesture.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+3 -1
+3 -1
Grain/Views/Components/GalleryCardView.swift
··· 301 301 Image(systemName: "ellipsis") 302 302 .font(.system(size: 14, weight: .medium)) 303 303 .foregroundStyle(.primary) 304 - .frame(width: 32, height: 32) 304 + .frame(width: 44, height: 44) 305 + .contentShape(Rectangle()) 305 306 } 306 307 .buttonStyle(.plain) 308 + .highPriorityGesture(TapGesture().onEnded { showCardActions = true }) 307 309 } 308 310 } 309 311 .padding(.horizontal, 12)