Remove 3D DayViewStyle

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Trey t
2025-12-20 01:30:34 -06:00
parent 15eea92b79
commit 75921732ea
4 changed files with 2 additions and 230 deletions

View File

@@ -43,9 +43,8 @@ enum DayViewStyle: Int, CaseIterable {
case pattern = 14 // Mood icons as repeating background pattern
case leather = 15 // Skeuomorphic leather with stitching
case glass = 16 // iOS 26 liquid glass with variable blur
case threeD = 17 // 3D card with perspective and depth
case motion = 18 // Accelerometer-driven parallax effect
case micro = 19 // Ultra compact single-line entries
case motion = 17 // Accelerometer-driven parallax effect
case micro = 18 // Ultra compact single-line entries
var displayName: String {
switch self {
@@ -66,7 +65,6 @@ enum DayViewStyle: Int, CaseIterable {
case .pattern: return "Pattern"
case .leather: return "Leather"
case .glass: return "Glass"
case .threeD: return "3D"
case .motion: return "Motion"
case .micro: return "Micro"
}