[utilities/kdebugsettings] src/quickapps/contents/ui: Mark as read only
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 1e425170f9b0f32f48b152e7bd78633376737506 by Laurent Montel.
Committed on 18/07/2026 at 12:15.
Pushed by mlaurent into branch 'master'.
Mark as read only
M +2 -0 src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml
https://invent.kde.org/utilities/kdebugsettings/-/commit/1e425170f9b0f32f48b152e7bd78633376737506
diff --git a/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml b/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml
index 23754c3f..d583bcd9 100644
--- a/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml
+++ b/src/quickapps/contents/ui/EnvironmentVariableRulesPage.qml
@@ -19,6 +19,8 @@ Kirigami.Page {
anchors.centerIn: parent
TextEdit {
text: LoggingManager.environmentrules().length === 0 ? i18n("No rules have been defined in the environment variable \"QT_LOGGING_RULES\".") : LoggingManager.environmentrules()
+ readOnly: true;
+ horizontalAlignment: Qt.AlignHCenter
}
}
}