Index: sources/gui/qml/components/Background.qml =================================================================== diff -u -r442d1c4f53c96991d4103485ff5ff683ed00d4f7 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/Background.qml (.../Background.qml) (revision 442d1c4f53c96991d4103485ff5ff683ed00d4f7) +++ sources/gui/qml/components/Background.qml (.../Background.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,29 +1,26 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. - * \copyright \n - * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, \n - * IN PART OR IN WHOLE, \n - * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. \n + * 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 Background.qml - * \date 2020/01/11 - * \author Behrouz NematiPour + * \author (last) Behrouz NematiPour + * \date (last) 06-May-2021 + * \author (original) Behrouz NematiPour + * \date (original) 13-Jan-2020 * */ // Qt import QtQuick 2.0 // Project +import "qrc:/globals" - Rectangle { id: _root - - property alias bgColor : _root.color - property alias bgOpacity : _root.opacity - anchors.fill: parent - color: "gray" - opacity: 0.5 + color : Colors.backgroundMain + radius : Variables.dialogRadius }