diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-07 18:06:45 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-07 18:06:45 +1000 |
| commit | d76587c2db7a9a4a0856add445cf4427765faa28 (patch) | |
| tree | 71f0c6fc9f1ef85ace8b07a392c3fc45cad1414f /modules/drawers/Backgrounds.qml | |
| parent | popouts: fix anim when fast movement (diff) | |
| download | caelestia-shell-d76587c2db7a9a4a0856add445cf4427765faa28.tar.gz caelestia-shell-d76587c2db7a9a4a0856add445cf4427765faa28.tar.bz2 caelestia-shell-d76587c2db7a9a4a0856add445cf4427765faa28.zip | |
popouts: fix bottom glitch
Fix flicker when popout hits bottom
Also animate bottom rounding change
Diffstat (limited to 'modules/drawers/Backgrounds.qml')
| -rw-r--r-- | modules/drawers/Backgrounds.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drawers/Backgrounds.qml b/modules/drawers/Backgrounds.qml index 2b08b7b..1840da1 100644 --- a/modules/drawers/Backgrounds.qml +++ b/modules/drawers/Backgrounds.qml @@ -58,7 +58,7 @@ Shape { BarPopouts.Background { wrapper: panels.popouts - invertBottomRounding: wrapper.y + wrapper.height >= root.height + invertBottomRounding: wrapper.y + wrapper.height + 1 >= root.height startX: 0 startY: wrapper.y - rounding |