More icons fixes

This commit is contained in:
LemmyCook 2025-09-09 19:34:31 -04:00
parent d089966249
commit 1f9247c429
7 changed files with 16 additions and 20 deletions

View file

@ -176,7 +176,7 @@ PopupWindow {
}
NIcon {
text: modelData?.hasChildren ? "menu" : ""
icon: modelData?.hasChildren ? "menu" : ""
font.pointSize: Style.fontSizeS * scaling
verticalAlignment: Text.AlignVCenter
visible: modelData?.hasChildren ?? false

View file

@ -146,7 +146,7 @@ NPanel {
spacing: Style.marginXS * scaling
NIcon {
text: "sync"
icon: "refresh"
font.pointSize: Style.fontSizeXXL * 1.5 * scaling
color: Color.mPrimary

View file

@ -256,11 +256,10 @@ Variants {
}
// Fall back if no icon
NText {
NIcon {
anchors.centerIn: parent
visible: !appIcon.visible
text: "question_mark"
font.family: "Material Symbols Rounded"
icon: "question-mark"
font.pointSize: iconSize * 0.7
color: appButton.isActive ? Color.mPrimary : Color.mOnSurfaceVariant
scale: appButton.hovered ? 1.15 : 1.0

View file

@ -89,7 +89,7 @@ NBox {
indicator: NIcon {
x: playerSelector.width - width
y: playerSelector.topPadding + (playerSelector.availableHeight - height) / 2
text: "arrow_drop_down"
icon: "chevron-down"
font.pointSize: Style.fontSizeXXL * scaling
color: Color.mOnSurface
horizontalAlignment: Text.AlignRight

View file

@ -521,7 +521,7 @@ NPanel {
RowLayout {
NIcon {
text: "delete_outline"
icon: "trash"
font.pointSize: Style.fontSizeL * scaling
color: Color.mError
}