From aa048275767f58f716b0ffc88b7f7cfd02ea4f2d Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 7 Jun 2025 00:08:58 +1000 Subject: popouts: fix activewindow height changing Uses a bit more cpu but eh --- modules/bar/popouts/ActiveWindow.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/bar/popouts/ActiveWindow.qml b/modules/bar/popouts/ActiveWindow.qml index 2e3b5b5..f3a5269 100644 --- a/modules/bar/popouts/ActiveWindow.qml +++ b/modules/bar/popouts/ActiveWindow.qml @@ -58,8 +58,8 @@ Item { ScreencopyView { id: preview - captureSource: visible ? (ToplevelManager.toplevels.values.find(t => t.title === Hyprland.activeClient?.title) ?? null) : null - live: true + captureSource: ToplevelManager.toplevels.values.find(t => t.title === Hyprland.activeClient?.title) ?? null + live: visible constraintSize.width: BarConfig.sizes.windowPreviewSize constraintSize.height: BarConfig.sizes.windowPreviewSize -- cgit v1.2.3-freya