From 01e130dd6e13fad5dc4dd5e70dd443b38053c021 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Tue, 17 Feb 2026 22:28:51 +0100 Subject: [PATCH] checklist ideas.md, launcher rounding --- Modules/Launcher/Background.qml | 2 +- Modules/Launcher/Items/AppItem.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Launcher/Background.qml b/Modules/Launcher/Background.qml index e5295ba..ac13d4f 100644 --- a/Modules/Launcher/Background.qml +++ b/Modules/Launcher/Background.qml @@ -9,7 +9,7 @@ ShapePath { id: root required property Wrapper wrapper - readonly property real rounding: Config.barConfig.rounding + readonly property real rounding: Config.barConfig.rounding + 5 readonly property bool flatten: wrapper.height < rounding * 2 readonly property real roundingY: flatten ? wrapper.height / 2 : rounding diff --git a/Modules/Launcher/Items/AppItem.qml b/Modules/Launcher/Items/AppItem.qml index 5e4e8f2..ccee343 100644 --- a/Modules/Launcher/Items/AppItem.qml +++ b/Modules/Launcher/Items/AppItem.qml @@ -19,7 +19,7 @@ Item { anchors.right: parent?.right StateLayer { - radius: Appearance.rounding.normal + radius: 8 function onClicked(): void { Apps.launch(root.modelData); @@ -37,7 +37,7 @@ Item { id: icon source: Quickshell.iconPath(root.modelData?.icon, "image-missing") - implicitSize: parent.height * 0.8 + implicitSize: parent.height anchors.verticalCenter: parent.verticalCenter }