Explorar el Código

Set animated background false by default

Ivan Valkou hace 4 años
padre
commit
75784b1f8e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      FreeAPS/Sources/Models/FreeAPSSettings.swift

+ 1 - 1
FreeAPS/Sources/Models/FreeAPSSettings.swift

@@ -22,7 +22,7 @@ struct FreeAPSSettings: JSON, Equatable {
     var lowGlucose: Decimal = 72
     var highGlucose: Decimal = 270
     var carbsRequiredThreshold: Decimal = 10
-    var animatedBackground: Bool = true
+    var animatedBackground: Bool = false
 }
 
 extension FreeAPSSettings: Decodable {