More math rounding to avoid any blur.

This commit is contained in:
ItsLemmy
2025-10-10 15:47:14 -04:00
parent 9c7dab92d0
commit f77bbaa5e3
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ Item {
}
function getImplicitSize(item, prop) {
return (item && item.visible) ? item[prop] : 0
return (item && item.visible) ? Math.round(item[prop]) : 0
}
Loader {