From 54574e4450c7ff63771b228412189eac23f0a732 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Thu, 25 Jul 2024 19:13:04 -0400 Subject: [PATCH] AccountEditor: Add placeholder text for "Label" This makes it much clearer what possible purpose this field could do. --- src/settings/AccountEditorPage.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/settings/AccountEditorPage.qml b/src/settings/AccountEditorPage.qml index 92d349e28..ab3809396 100644 --- a/src/settings/AccountEditorPage.qml +++ b/src/settings/AccountEditorPage.qml @@ -110,6 +110,7 @@ FormCard.FormCardPage { FormCard.FormTextFieldDelegate { id: accountLabel label: i18n("Label:") + placeholderText: i18n("Work") text: root.connection ? root.connection.label : "" } FormCard.FormDelegateSeparator {}