Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -rfff4ebfd528e1ca2b4475e375130d0d4c90fe38a -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision fff4ebfd528e1ca2b4475e375130d0d4c90fe38a) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2020-2023 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 DebugDataColumn.qml * \author (last) Behrouz NematiPour - * \date (last) 10-Feb-2023 + * \date (last) 28-May-2023 * \author (original) Behrouz NematiPour * \date (original) 23-Aug-2020 * @@ -47,7 +47,7 @@ font.pixelSize: fontPixelSizeTitle font.underline: true bottomPadding: 5 - font.family: Fonts.fontFamilyDebug + font.family: Fonts.fontFamilyFixed } Repeater { id: _repeater model: _root.model @@ -58,7 +58,7 @@ horizontalAlignment: _root.horizontalAlignmentText color: Colors.textMain font.pixelSize: fontPixelSizeText - font.family: Fonts.fontFamilyDebug + font.family: Fonts.fontFamilyFixed Text { objectName : _root.textObjectName + "L" + index @@ -68,7 +68,7 @@ anchors.baseline: parent.baseline anchors.left : parent.right horizontalAlignment: Text.AlignLeft - font.family: Fonts.fontFamilyDebug + font.family: Fonts.fontFamilyFixed } } }