Index: sources/gui/qml/components/Footer.qml =================================================================== diff -u -rdb2238dcf17941be6a3c587b55a3ef06b94cee96 -rbd01334f257c35b96b7b232beacbcd7fae60c852 --- sources/gui/qml/components/Footer.qml (.../Footer.qml) (revision db2238dcf17941be6a3c587b55a3ef06b94cee96) +++ sources/gui/qml/components/Footer.qml (.../Footer.qml) (revision bd01334f257c35b96b7b232beacbcd7fae60c852) @@ -24,7 +24,8 @@ * \brief Denali project Footer section which gives all the children same width with same spacing, aligned in center */ Row { id: _root - readonly property int splits: _root.width / (children.length * 2 + 1 ) + property int childrenCount: children.length + readonly property int splits: _root.width / (childrenCount * 2 + 1 ) spacing : _root.splits rightPadding : spacing