LocationTab: fix ntoggle opacity

This commit is contained in:
ItsLemmy
2025-10-30 14:11:20 -04:00
parent 8db8913bd3
commit e60e2b5eb1
-2
View File
@@ -84,7 +84,6 @@ ColumnLayout {
checked: Settings.data.location.useFahrenheit
onToggled: checked => Settings.data.location.useFahrenheit = checked
enabled: Settings.data.location.weatherEnabled
opacity: Settings.data.location.weatherEnabled ? 1.0 : 0.5
}
NToggle {
@@ -93,7 +92,6 @@ ColumnLayout {
checked: Settings.data.location.showCalendarWeather
onToggled: checked => Settings.data.location.showCalendarWeather = checked
enabled: Settings.data.location.weatherEnabled
opacity: Settings.data.location.weatherEnabled ? 1.0 : 0.5
}
}