Index: sources/gui/qml/components/Footer.qml =================================================================== diff -u -r13e65c3d271d503c2e2e2f1f20736652c470f8cc -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/Footer.qml (.../Footer.qml) (revision 13e65c3d271d503c2e2e2f1f20736652c470f8cc) +++ sources/gui/qml/components/Footer.qml (.../Footer.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2021-2022 Diality Inc. - All Rights Reserved. + * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file Footer.qml * \author (last) Behrouz NematiPour - * \date (last) 22-May-2021 + * \date (last) 06-Oct-2022 * \author (original) Behrouz NematiPour * \date (original) 18-Mar-2021 * @@ -44,7 +44,7 @@ let visibleCount = 0 for (let i = 0; i < count; i++) { - console.debug(children[i].text.text) + //DEBUG: console.debug(children[i].text.text) if ( children[i].visible ) { visibleCount += 1 @@ -57,7 +57,7 @@ } } let spacing = (_root.width - (width * visibleCount)) / (visibleCount + 1) - console.debug( " ~~~~~~~~~~ ", count, visibleCount, spacing) + //DEBUG: console.debug( " ~~~~~~~~~~ ", count, visibleCount, spacing) _private.spacing = spacing }