From 622780a18b551efb05ea45719862c841c01ffe5d Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Mon, 25 Sep 2023 22:03:16 +0200 Subject: Show labels for 'Username:' and 'Password:' if configured via gsettings. Fixes: https://github.com/ArcticaProject/arctica-greeter/issues/62 --- src/greeter-list.vala | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/greeter-list.vala') diff --git a/src/greeter-list.vala b/src/greeter-list.vala index 102c153..e39ac19 100644 --- a/src/greeter-list.vala +++ b/src/greeter-list.vala @@ -819,6 +819,8 @@ public abstract class GreeterList : FadableBox protected virtual void show_prompt_cb (string text, LightDM.PromptType type) { + var show_label_if_configured = false; + /* Notify the greeter on what user has been logged */ if (get_selected_id () == "*other" && manual_name == null) { @@ -831,9 +833,21 @@ public abstract class GreeterList : FadableBox prompted = true; if (text == "Password: ") + { text = _("Password:"); + show_label_if_configured = true; + } if (text == "login:") + { text = _("Username:"); + show_label_if_configured = true; + } + + if ((AGSettings.get_boolean(AGSettings.KEY_SHOW_LOGIN_LABELS)) && (show_label_if_configured)) + { + show_message(text); + } + var entry = add_prompt (text, type == LightDM.PromptType.SECRET); /* Limit the number of characters in case a cat is sitting on the keyboard... */ -- cgit v1.2.3