From c2b421802374e4fa9c6e24f3f59df1c00157fcf8 Mon Sep 17 00:00:00 2001 From: James Lyne Date: Sat, 15 May 2021 23:41:21 +0100 Subject: [PATCH] Fix backwards clear weather icons --- src/leaflet/control/ClockControl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/leaflet/control/ClockControl.ts b/src/leaflet/control/ClockControl.ts index c93834f..37eb80d 100644 --- a/src/leaflet/control/ClockControl.ts +++ b/src/leaflet/control/ClockControl.ts @@ -145,8 +145,8 @@ export class ClockControl extends Control { this._setSunIcon('clock_sun_rain'); this._setMoonIcon('clock_moon_rain'); } else { - this._setSunIcon('clock_moon'); - this._setMoonIcon('clock_sun'); + this._setSunIcon('clock_sun'); + this._setMoonIcon('clock_moon'); } } }