@@ -110,7 +110,7 @@ struct DecimalPickerSettings {
value: 0.2,
step: 0.05,
min: 0.1,
- max: 2,
+ max: 0.4,
type: PickerSetting.PickerSettingType.factor
)
var adjustmentFactor = PickerSetting(value: 0.8, step: 0.1, min: 0.5, max: 1.5, type: PickerSetting.PickerSettingType.factor)
@@ -159,7 +159,7 @@ struct LiveActivity: Widget {
@ViewBuilder private func changeLabel(context: ActivityViewContext<LiveActivityAttributes>) -> some View {
if !context.state.change.isEmpty {
- Text(context.state.change).foregroundStyle(.primary.opacity(0.5)).font(.headline)
+ Text(context.state.change).foregroundStyle(.primary).font(.headline)
.strikethrough(context.isStale, pattern: .solid, color: .red.opacity(0.6))
} else {
Text("--")