Skip to content

Commit d1a955a

Browse files
committed
swapped colors for stages 0 and 1
1 parent d7d77cf commit d1a955a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

natruc/ProgramItem.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
import Foundation
1010

1111
internal enum Color: Int {
12-
case Blue = 0
13-
case Red = 1
12+
case Blue = 1
13+
case Red = 0
1414
case Green = 2
1515
}
1616

natruc/ProgramViewModel.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ internal final class ProgramViewModel {
6868
switch section {
6969

7070
case 0:
71-
return .Blue
72-
case 1:
7371
return .Red
72+
case 1:
73+
return .Blue
7474
case 2:
7575
return .Green
7676
default:

0 commit comments

Comments
 (0)