native macOS codings agent orchestrator
6
fork

Configure Feed

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

Add accessibility labels to DiffWindowContentView toolbar images

onevcat dcc5792c 4c141d34

+3
+3
supacode/Features/DiffView/DiffWindowContentView.swift
··· 35 35 toggleSidebar() 36 36 } label: { 37 37 Image(systemName: "sidebar.left") 38 + .accessibilityLabel("Toggle Sidebar") 38 39 } 39 40 .help("Toggle Sidebar (\(AppShortcuts.toggleLeftSidebar.display))") 40 41 } 41 42 ToolbarItem(id: "diffStyle", placement: .primaryAction) { 42 43 Picker("Diff Style", selection: $diffStyleRaw) { 43 44 Image(systemName: "square.split.2x1") 45 + .accessibilityLabel("Split") 44 46 .tag(DiffStyle.split.rawValue) 45 47 .help("Split") 46 48 Image(systemName: "text.justify.left") 49 + .accessibilityLabel("Unified") 47 50 .tag(DiffStyle.unified.rawValue) 48 51 .help("Unified") 49 52 }