native macOS codings agent orchestrator
6
fork

Configure Feed

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

Merge pull request #51 from supabitapp/smart-fox

Fix repo row hit target in sidebar

authored by

khoi and committed by
GitHub
9ffd6375 5a684463

+10 -7
+10 -7
supacode/Features/Repositories/Views/RepositorySectionView.swift
··· 34 34 expandedRepoIDs.insert(repository.id) 35 35 } 36 36 } label: { 37 - RepoHeaderRow( 38 - name: repository.name, 39 - initials: repository.initials, 40 - isExpanded: isExpanded, 41 - isRemoving: isRemovingRepository 42 - ) 37 + HStack { 38 + RepoHeaderRow( 39 + name: repository.name, 40 + initials: repository.initials, 41 + isExpanded: isExpanded, 42 + isRemoving: isRemovingRepository 43 + ) 44 + Spacer() 45 + } 46 + .contentShape(Rectangle()) 43 47 } 44 48 .buttonStyle(.plain) 45 49 .disabled(isRemovingRepository) ··· 54 58 .help("Remove repository (no shortcut)") 55 59 .disabled(isRemovingRepository) 56 60 } 57 - Spacer() 58 61 if isRemovingRepository { 59 62 ProgressView() 60 63 .controlSize(.small)