From 5a83f232a6ccf1e91c00bb8a4576a76697e6edee Mon Sep 17 00:00:00 2001 From: kutesir Date: Thu, 25 Jun 2026 00:28:47 +0300 Subject: [PATCH] Tasks: square (rounded) checkbox, slightly smaller TaskRowView checkbox: 18pt circle -> 16pt rounded square (cornerRadius 5), matching the requested look. Keeps the quadrant-color stroke and 36x44 tap target. Co-Authored-By: Claude Opus 4.8 --- KisaniCal/Views/TodayView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/KisaniCal/Views/TodayView.swift b/KisaniCal/Views/TodayView.swift index d5b402d..32a88a6 100644 --- a/KisaniCal/Views/TodayView.swift +++ b/KisaniCal/Views/TodayView.swift @@ -1300,12 +1300,12 @@ struct TaskRowView: View { onToggle() } } label: { - Circle() + RoundedRectangle(cornerRadius: 5, style: .continuous) .strokeBorder(task.quadrant.color, lineWidth: 1.5) - .frame(width: 18, height: 18) + .frame(width: 16, height: 16) .frame(width: 36, height: 44) .padding(.leading, 4) - .contentShape(Circle()) + .contentShape(Rectangle()) } .buttonStyle(PressButtonStyle(scale: 0.82))