More icons

This commit is contained in:
LemmyCook 2025-09-09 18:43:39 -04:00
parent 032087b611
commit b2d629e6a1
4 changed files with 8 additions and 6 deletions

View file

@ -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",

View file

@ -86,7 +86,7 @@ NPanel {
}
NIcon {
icon: "bell-slash"
icon: "bell-off"
font.pointSize: 64 * scaling
color: Color.mOnSurfaceVariant
Layout.alignment: Qt.AlignHCenter

View file

@ -91,7 +91,7 @@ NPanel {
spacing: Style.marginS * scaling
NIcon {
icon: "exclamation-circle"
icon: "warning"
font.pointSize: Style.fontSizeL * scaling
color: Color.mError
}

View file

@ -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":