From 969b59015b1ce5abcd86240f6da2199e7f2cec9a Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Mon, 25 Nov 2024 07:45:01 +0100 Subject: [PATCH] Make version number selectable for debugging --- Linphone/view/Page/Layout/Settings/DebugSettingsLayout.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Linphone/view/Page/Layout/Settings/DebugSettingsLayout.qml b/Linphone/view/Page/Layout/Settings/DebugSettingsLayout.qml index 7a9078ba4..5d454ca84 100644 --- a/Linphone/view/Page/Layout/Settings/DebugSettingsLayout.qml +++ b/Linphone/view/Page/Layout/Settings/DebugSettingsLayout.qml @@ -114,12 +114,13 @@ AbstractSettingsLayout { color: DefaultStyle.main2_600 Layout.fillWidth: true } - Text { + TextEdit { text: AppCpp.applicationVersion + ' ('+ AppCpp.gitBranchName + ')' font: Typography.p1 wrapMode: Text.WordWrap color: DefaultStyle.main2_600 Layout.fillWidth: true + readOnly: true } } } @@ -141,12 +142,13 @@ AbstractSettingsLayout { color: DefaultStyle.main2_600 Layout.fillWidth: true } - Text { + TextEdit { text: AppCpp.sdkVersion font: Typography.p1 wrapMode: Text.WordWrap color: DefaultStyle.main2_600 Layout.fillWidth: true + readOnly: true } } }