Fix hover text color in PowerMenu.qml

This commit is contained in:
Ly-sec 2025-08-14 18:47:24 +02:00
parent 2b39cbfe01
commit 0572e0d646
2 changed files with 12 additions and 12 deletions

View file

@ -455,7 +455,7 @@ NLoader {
text: modelData.name || "Unknown"
font.pointSize: 14 * scaling
font.weight: Font.Bold
color: (appCardArea.containsMouse || isSelected) ? Colors.backgroundPrimary : Colors.textPrimary
color: Colors.textPrimary
elide: Text.ElideRight
Layout.fillWidth: true
}
@ -466,7 +466,7 @@ NLoader {
modelData.isCommand ? modelData.content :
(modelData.genericName || modelData.comment || "")
font.pointSize: 11 * scaling
color: (appCardArea.containsMouse || isSelected) ? Colors.backgroundPrimary : Colors.textSecondary
color: (appCardArea.containsMouse || isSelected) ? Colors.textPrimary : Colors.textSecondary
elide: Text.ElideRight
Layout.fillWidth: true
visible: text !== ""