1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-04 04:42:05 -04:00

weather: fix anim on open

This commit is contained in:
bbedward
2026-02-08 21:43:56 -05:00
parent 591d2ba4d4
commit 2b546967d2

View File

@@ -964,7 +964,7 @@ Item {
property var cardWidth: ((hourlyList.width + hourlyList.spacing) / hourlyList.visibleCount) - hourlyList.spacing
property int initialIndex: (new Date()).getHours()
property bool dense: !SessionData.weatherHourlyDetailed
property int visibleCount: 8
property int visibleCount: dense ? 10 : 5
model: WeatherService.weather.hourlyForecast?.length ?? 0