From 98ef819feeee075494fdbbef6a1e1591794f94a0 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 14 Nov 2025 09:57:11 +0100 Subject: [PATCH] stickypad: unfuck window size --- dots/.config/quickshell/ii/modules/common/Persistent.qml | 2 ++ .../quickshell/ii/modules/overlay/stickypad/Stickypad.qml | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/common/Persistent.qml b/dots/.config/quickshell/ii/modules/common/Persistent.qml index fbb52071c..afa554d26 100644 --- a/dots/.config/quickshell/ii/modules/common/Persistent.qml +++ b/dots/.config/quickshell/ii/modules/common/Persistent.qml @@ -128,6 +128,8 @@ Singleton { property bool clickthrough: false property real x: 100 property real y: 100 + property real width: 350 + property real height: 600 } } diff --git a/dots/.config/quickshell/ii/modules/overlay/stickypad/Stickypad.qml b/dots/.config/quickshell/ii/modules/overlay/stickypad/Stickypad.qml index 74b68fdf4..1db5f6693 100644 --- a/dots/.config/quickshell/ii/modules/overlay/stickypad/Stickypad.qml +++ b/dots/.config/quickshell/ii/modules/overlay/stickypad/Stickypad.qml @@ -10,8 +10,7 @@ StyledOverlayWidget { showCenterButton: true contentItem: StickypadContent { - implicitWidth: 440 - implicitHeight: 380 + anchors.fill: parent isClickthrough: root.clickthrough } }