Index: sources/gui/qml/components/MuteButton.qml =================================================================== diff -u -rcd769413344091cea88a30861b49188c8c147cba -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/MuteButton.qml (.../MuteButton.qml) (revision cd769413344091cea88a30861b49188c8c147cba) +++ sources/gui/qml/components/MuteButton.qml (.../MuteButton.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * Copyright (c) 2020-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 MuteButton.qml * \author (last) Behrouz NematiPour - * \date (last) 09-Dec-2020 + * \date (last) 10-Aug-2021 * \author (original) Behrouz NematiPour * \date (original) 09-Dec-2020 * @@ -26,23 +26,23 @@ height: 45 width : isSilenced ? 120 : height - color: Colors.transparent + backgroundColor: Colors.transparent borderColor: Colors.white touchExpanding: 25 Row { anchors.fill: _root leftPadding: 10 spacing: 5 - Image { id: _muteImage + Image { id: _image anchors.verticalCenter: parent.verticalCenter - height : 25 - width : 25 + height : Variables.iconsDiameter + width : Variables.iconsDiameter source : _root.isSilenced ? "qrc:/images/iBellOff" : "qrc:/images/iBellOn" } TimeText { id: _timeoutText // texts are working with thir base line and not the dimetion - // needs to be adjusted and can't just be set to verticalCenter + // needs to be adjusted and cannot just be set to verticalCenter anchors.top: parent.top anchors.topMargin: 4