changes to config plugin, reduce file amount + code, fix greeter

This commit is contained in:
2026-08-13 15:41:16 +02:00
parent 9d2f78eb5e
commit b2e092d0be
145 changed files with 2531 additions and 6949 deletions
+3 -2
View File
@@ -171,10 +171,11 @@ ListView {
item.held = true;
itemContent.x = Qt.binding(() => {
if (!root)
if (!root) {
return 0;
}
const maxOvershoot = Tokens.padding.extraExtraLarge;
const maxOvershoot = Tokens.padding.extraLargeIncreased;
const x = mouse.mouseX - item.pressPos.x;
return root.dampOvershoot(Math.abs(x), maxOvershoot) * Math.sign(x);
});