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 }