Hello everyone,

there is a binding loop in the AppletConfiguration.qml in org.kde.plasma.desktop/contents/configuration/ and it influences all the configuration dialogs of applets. Is it important?

It is found in lines 163,164

---

width: categoriesScroll.viewport.width
height: Math.max(categoriesScroll.viewport.height, categories.height)

---

It is found in the categories in the configuration dialog.. the child of a QtControls.ScrollView is using its viewport to count its size and that creates a binding loop. I changed them with:

---------------

width: units.gridUnit * 7 - 4
height: categories.childrenRect.height

-----------

and the bindings were removed and the appearance looks the same.


regards,

michail

Reply via email to