From 01a4bf3832266768eada3ddd2324e9b4f005b6c8 Mon Sep 17 00:00:00 2001 From: VitorVieiraZ Date: Wed, 26 Jun 2024 09:54:26 -0300 Subject: [PATCH] last adjustment --- app/qml/components/private/MMBaseSingleLineInput.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/qml/components/private/MMBaseSingleLineInput.qml b/app/qml/components/private/MMBaseSingleLineInput.qml index 46e33fc3b..54b54dfd5 100644 --- a/app/qml/components/private/MMBaseSingleLineInput.qml +++ b/app/qml/components/private/MMBaseSingleLineInput.qml @@ -144,7 +144,7 @@ MMBaseInput { // Do not let TextField calculate implicitWidth automatically based on background, it causes binding loops implicitWidth: width - readOnly: root.editState === "readOnly" || root.editState === "disabled" && !root.isAttributeEditable + readOnly: root.editState === "readOnly" || root.editState === "disabled" && !root.fieldIsEditable // Ensure the text is scrolled to the beginning Component.onCompleted: ensureVisible( 0 )