diff --git a/Modules/Panels/Launcher/LauncherGridDelegate.qml b/Modules/Panels/Launcher/LauncherGridDelegate.qml index e6bc3f84c..0bcc57217 100644 --- a/Modules/Panels/Launcher/LauncherGridDelegate.qml +++ b/Modules/Panels/Launcher/LauncherGridDelegate.qml @@ -30,7 +30,7 @@ Item { id: gridEntry anchors.fill: parent anchors.margins: Style.marginXXS - color: gridEntryContainer.isSelected ? Color.mHover : Color.mSurfaceVariant + color: gridEntryContainer.isSelected ? Color.mHover : "transparent" forceOpaque: gridEntryContainer.isSelected Behavior on color { diff --git a/Modules/Panels/Launcher/LauncherListDelegate.qml b/Modules/Panels/Launcher/LauncherListDelegate.qml index 63f1d767f..631fe7aec 100644 --- a/Modules/Panels/Launcher/LauncherListDelegate.qml +++ b/Modules/Panels/Launcher/LauncherListDelegate.qml @@ -18,7 +18,7 @@ NBox { width: ListView.view.width implicitHeight: launcher.entryHeight clip: true - color: entry.isSelected ? Color.mHover : Color.mSurfaceVariant + color: entry.isSelected ? Color.mHover : "transparent" forceOpaque: entry.isSelected // Prepare item when it becomes visible (e.g., decode images)