From 55a8aa30265acf7d461d666be93f53e99ecd25e7 Mon Sep 17 00:00:00 2001 From: quadbyte Date: Fri, 15 Aug 2025 17:38:41 -0400 Subject: [PATCH 1/2] TrayMenu: fix hover --- Modules/Bar/TrayMenu.qml | 2 +- Widgets/NCard.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/TrayMenu.qml b/Modules/Bar/TrayMenu.qml index dd94d8d..5289a72 100644 --- a/Modules/Bar/TrayMenu.qml +++ b/Modules/Bar/TrayMenu.qml @@ -125,7 +125,7 @@ PopupWindow { id: text Layout.fillWidth: true color: (modelData?.enabled - ?? true) ? (mouseArea.containsMouse ? Colors.mOnSurface : Colors.mOnSurface) : Colors.textDisabled + ?? true) ? (mouseArea.containsMouse ? Colors.mOnTertiary : Colors.mOnSurface) : Colors.textDisabled text: modelData?.text ?? "" font.pointSize: Style.fontSizeSmall * scaling verticalAlignment: Text.AlignVCenter diff --git a/Widgets/NCard.qml b/Widgets/NCard.qml index c173a8a..0fcfd1e 100644 --- a/Widgets/NCard.qml +++ b/Widgets/NCard.qml @@ -10,6 +10,6 @@ Rectangle { color: Colors.mSurface radius: Style.radiusMedium * scaling - border.color: Colors.mSurfaceVariant + border.color: Colors.mOutline border.width: Math.max(1, Style.borderThin * scaling) } From 7ec7ac793e52a6452c9dfa94d574259b1dc060fd Mon Sep 17 00:00:00 2001 From: quadbyte Date: Fri, 15 Aug 2025 17:40:13 -0400 Subject: [PATCH 2/2] SettingsPanel size --- Modules/Settings/SettingsPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Settings/SettingsPanel.qml b/Modules/Settings/SettingsPanel.qml index 094a75b..68f5a36 100644 --- a/Modules/Settings/SettingsPanel.qml +++ b/Modules/Settings/SettingsPanel.qml @@ -194,7 +194,7 @@ NLoader { border.width: Math.max(1, Style.borderThin * scaling) layer.enabled: true width: Math.max(screen.width * 0.5, 1280) * scaling - height: Math.max(screen.width * 0.5, 720) * scaling + height: Math.max(screen.height * 0.5, 720) * scaling anchors.centerIn: parent // Animation properties