From f599a6897dd7009ab452080e2c06f035f9248305 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Wed, 29 Sep 2021 12:25:05 +0000 Subject: [PATCH] taskpanel: Make the vertical form factor offset a bit smaller. --- containments/taskpanel/package/contents/ui/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/taskpanel/package/contents/ui/main.qml b/containments/taskpanel/package/contents/ui/main.qml index 053b91f1..bc85b3a4 100644 --- a/containments/taskpanel/package/contents/ui/main.qml +++ b/containments/taskpanel/package/contents/ui/main.qml @@ -255,7 +255,7 @@ PlasmaCore.ColorScope { Window.window.offset = Qt.binding(() => { // FIXME: find a more precise way to determine the top panel height - return plasmoid.formFactor === PlasmaCore.Types.Vertical ? PlasmaCore.Units.gridUnit + PlasmaCore.Units.smallSpacing : 0 + return plasmoid.formFactor === PlasmaCore.Types.Vertical ? PlasmaCore.Units.gridUnit : 0 }); }