From 37ce4d902d050b67b75ae476ea43056403bb769b Mon Sep 17 00:00:00 2001 From: Kaustuv Pokharel Date: Mon, 29 Sep 2025 15:24:39 -0400 Subject: [PATCH 1/3] dianostic log copyable with mouse and touch --- app/qml/settings/MMLogPage.qml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/qml/settings/MMLogPage.qml b/app/qml/settings/MMLogPage.qml index 91a8c5ca0..1d68bf5ef 100644 --- a/app/qml/settings/MMLogPage.qml +++ b/app/qml/settings/MMLogPage.qml @@ -37,15 +37,18 @@ MMPage { maximumFlickVelocity: __androidUtils.isAndroid ? __style.scrollVelocityAndroid : maximumFlickVelocity - Text { + TextEdit { id: txt - text: "" + root.text + + __style.nightColor + "; }" + "" + root.text + "KaustuvLAST" font: __style.t3 color: __style.forestColor textFormat: Text.RichText wrapMode: Text.WordWrap + readOnly: true + selectByMouse: true + selectByKeyboard: true width: parent.width } From 6894d74c2193d4e02fe1b9529bbf435156d37ba6 Mon Sep 17 00:00:00 2001 From: Kaustuv Pokharel Date: Mon, 29 Sep 2025 15:36:10 -0400 Subject: [PATCH 2/3] text selected highlight color changed --- app/qml/settings/MMLogPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/qml/settings/MMLogPage.qml b/app/qml/settings/MMLogPage.qml index 1d68bf5ef..295d38359 100644 --- a/app/qml/settings/MMLogPage.qml +++ b/app/qml/settings/MMLogPage.qml @@ -49,6 +49,7 @@ MMPage { readOnly: true selectByMouse: true selectByKeyboard: true + selectionColor: __style.forestColor width: parent.width } From ee75c6df0314feb1257a948a53cd16c598cf9734 Mon Sep 17 00:00:00 2001 From: Kaustuv Pokharel Date: Mon, 29 Sep 2025 15:45:46 -0400 Subject: [PATCH 3/3] removed debug helper comments --- app/qml/settings/MMLogPage.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/qml/settings/MMLogPage.qml b/app/qml/settings/MMLogPage.qml index 295d38359..1751985e7 100644 --- a/app/qml/settings/MMLogPage.qml +++ b/app/qml/settings/MMLogPage.qml @@ -39,9 +39,9 @@ MMPage { TextEdit { id: txt - text: "Kaustuv " + root.text + "KaustuvLAST" + + __style.nightColor + "; }" + "" + root.text font: __style.t3 color: __style.forestColor textFormat: Text.RichText