diff --git a/Modules/SidePanel/Cards/ProfileCard.qml b/Modules/SidePanel/Cards/ProfileCard.qml index 4c2d1ce..675d67b 100644 --- a/Modules/SidePanel/Cards/ProfileCard.qml +++ b/Modules/SidePanel/Cards/ProfileCard.qml @@ -58,7 +58,7 @@ NBox { Layout.fillWidth: true } NIconButton { - icon: "settings" + icon: FontService.icons["gear"] tooltipText: "Open settings." onClicked: { settingsPanel.requestedTab = SettingsPanel.Tab.General @@ -68,7 +68,7 @@ NBox { NIconButton { id: powerButton - icon: "power_settings_new" + icon: FontService.icons["power"] tooltipText: "Power menu." onClicked: { powerPanel.open(screen) @@ -78,7 +78,7 @@ NBox { NIconButton { id: closeButton - icon: "close" + icon: FontService.icons["close"] tooltipText: "Close side panel." onClicked: { sidePanel.close() diff --git a/Services/FontService.qml b/Services/FontService.qml index 0fa57a2..1076ae5 100644 --- a/Services/FontService.qml +++ b/Services/FontService.qml @@ -14,11 +14,18 @@ Singleton { property bool fontsLoaded: false property var icons: { + // weather "sunny": "\ue30d", "partly_cloudy": "\ue302", "cloud": "\ue312", "foggy": "\ue311", - "rainy": "\ue318" + "rainy": "\ue318", + "snowy": "\ue319", + "thunderstom": "\ue31d", + + "power": "\uf011", + "gear": "\uf013", + "close": "\uf00D" } diff --git a/Services/LocationService.qml b/Services/LocationService.qml index 117c414..935ab04 100644 --- a/Services/LocationService.qml +++ b/Services/LocationService.qml @@ -241,7 +241,7 @@ Singleton { if (code >= 51 && code <= 67) return FontService.icons["rainy"] if (code >= 71 && code <= 77) - return FontService.icons["weather_snowy"] + return FontService.icons["snowy"] if (code >= 80 && code <= 82) return FontService.icons["rainy"] if (code >= 95 && code <= 99)