popout positioning

This commit is contained in:
Zacharias-Brohn
2025-11-25 18:16:04 +01:00
parent 606cafb2ba
commit 617122a1c4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ Shape {
Modules.Background {
wrapper: root.panels.popouts
startX: Math.floor(wrapper.x - rounding)
startX: wrapper.x - rounding
startY: wrapper.y
}
}
+1 -1
View File
@@ -27,7 +27,7 @@ Item {
const diff = root.width - Math.floor(off + nonAnimWidth);
if (diff < 0)
return off + diff;
return Math.max(off, 0);
return Math.floor(Math.max(off, 0));
}
}
}