diff --git a/Commons/IconsSets/TablerIcons.qml b/Commons/IconsSets/TablerIcons.qml index 07ee45f..69fb683 100644 --- a/Commons/IconsSets/TablerIcons.qml +++ b/Commons/IconsSets/TablerIcons.qml @@ -14,8 +14,10 @@ Singleton { "settings": "settings", "refresh": "refresh", "add": "plus", - "circle-check": "circle-check", - "exclamation-circle": "exclamation-circle", + "trash": "trash-filled", + "toast-notice": "circle-check", + "toast-warning": "exclamation-circle", + "warning": "exclamation-circle", "stop": "player-stop-filled", "media-pause": "player-pause", "media-play": "player-play", @@ -31,7 +33,7 @@ Singleton { "download-speed": "download", "upload-speed": "upload", "storage": "device-floppy", - "ethernet": "network", + "ethernet": "plug-connected", "keyboard": "keyboard", "shutdown": "power", diff --git a/Modules/Notification/NotificationHistoryPanel.qml b/Modules/Notification/NotificationHistoryPanel.qml index e80867c..3d90b9b 100644 --- a/Modules/Notification/NotificationHistoryPanel.qml +++ b/Modules/Notification/NotificationHistoryPanel.qml @@ -86,7 +86,7 @@ NPanel { } NIcon { - icon: "bell-slash" + icon: "bell-off" font.pointSize: 64 * scaling color: Color.mOnSurfaceVariant Layout.alignment: Qt.AlignHCenter diff --git a/Modules/WiFiPanel/WiFiPanel.qml b/Modules/WiFiPanel/WiFiPanel.qml index 54109b2..9cf6a78 100644 --- a/Modules/WiFiPanel/WiFiPanel.qml +++ b/Modules/WiFiPanel/WiFiPanel.qml @@ -91,7 +91,7 @@ NPanel { spacing: Style.marginS * scaling NIcon { - icon: "exclamation-circle" + icon: "warning" font.pointSize: Style.fontSizeL * scaling color: Color.mError } diff --git a/Widgets/NToast.qml b/Widgets/NToast.qml index b81a644..3c559cb 100644 --- a/Widgets/NToast.qml +++ b/Widgets/NToast.qml @@ -118,7 +118,7 @@ Item { // Icon NIcon { id: icon - icon: (root.type == "warning") ? "exclamation-circle" : "circle-check" + icon: (root.type == "warning") ? "toast-warning" : "toast-notice" color: { switch (root.type) { case "warning":