diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-01-27 16:51:22 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-28 13:20:19 +0100 |
commit | 0a3b1f6bc896a0c3791cc105cf992ec6c8aaf5d3 (patch) | |
tree | 19a54c436b9d6d2d9dd05a06a5d17d28a0a6524d | |
parent | cfd1755910057449ea55251746a6966a731bfd22 (diff) | |
download | serenity-0a3b1f6bc896a0c3791cc105cf992ec6c8aaf5d3.zip |
MailSettings: Use standard text placement for check box text
-rw-r--r-- | Userland/Applications/MailSettings/MailSettingsWidget.gml | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Userland/Applications/MailSettings/MailSettingsWidget.gml b/Userland/Applications/MailSettings/MailSettingsWidget.gml index 4b82071e02..86a5e3da46 100644 --- a/Userland/Applications/MailSettings/MailSettingsWidget.gml +++ b/Userland/Applications/MailSettings/MailSettingsWidget.gml @@ -81,17 +81,9 @@ fixed_width: 32 } - @GUI::Label { - text: "Use TLS:" - fixed_width: 80 - text_alignment: "CenterLeft" - name: "tls_label" - } - @GUI::CheckBox { name: "tls_input" - fixed_width: 14 - + text: "Use TLS" } } } |