From c753af02ba1ccb6272ed5e00faa40dcf2e5eb504 Mon Sep 17 00:00:00 2001 From: SomeElse Date: Mon, 27 Apr 2026 07:55:35 +0000 Subject: [PATCH] added mipmap option to launcher --- config/config.qml | 1 + launcher/Launcher.qml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/config/config.qml b/config/config.qml index a90b626..ee9ce99 100644 --- a/config/config.qml +++ b/config/config.qml @@ -86,4 +86,5 @@ QtObject { property string launcherCacheDir: "/tmp/qs_launcher" property bool launcherCloseOnClickOutside: true property bool launcherSelectFirst: false + property bool launcherMipmapIcons: false } diff --git a/launcher/Launcher.qml b/launcher/Launcher.qml index 549ebaf..a03c810 100644 --- a/launcher/Launcher.qml +++ b/launcher/Launcher.qml @@ -376,8 +376,10 @@ PanelWindow { id: appIcon anchors.fill: parent source: modelData.icon ? "image://icon/" + modelData.icon : "" + sourceSize: Qt.size(64, 64) fillMode: Image.PreserveAspectFit smooth: true + mipmap: Cfg.Config.launcherMipmapIcons visible: status === Image.Ready }