nvrsion: Add: Change dispatch button color to normal gray in TodoView.

Nucleic-Promote: 1
Co-authored-by: Nucleic <[email protected]>
This commit is contained in:
2026-06-28 19:34:43 -07:00
co-authored by nucleic
parent 8b5ad59fc3
commit 437c8ae7ec
+5
View File
@@ -429,6 +429,11 @@ private struct TodoRow: View {
Label("Dispatch", systemImage: "paperplane.fill")
}
.buttonStyle(.borderedProminent)
// Pin to gray: .borderedProminent otherwise inherits the teal accent. It read
// gray for a while because the old .menuStyle(.button) override suppressed the
// prominent tint; that override went away when this stopped being a menu, so the
// teal crept back. Tinting gray restores the intended look.
.tint(.gray)
.fixedSize()
.help("Start an agent on this in \(project.name)")
} else if store.projects.isEmpty {