[gnome-shell/uajain/adapt-user-avatar-part2: 21/26] authPrompt: Remove colons from questions
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/uajain/adapt-user-avatar-part2: 21/26] authPrompt: Remove colons from questions
- Date: Wed, 12 Feb 2020 19:31:42 +0000 (UTC)
commit 66835c6e15b40ac8a0175c250e4ead0a24a12b2e
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date: Mon Feb 10 15:15:16 2020 -0300
authPrompt: Remove colons from questions
Unfortunately, the question that is displayed comes directly
from PAM. It usually is just "Password:", which comes from
pam-unix, but other questions can be set, usually with the
colons, since they are crafted with a CLI workflow in mind.
Manually drop the colons from questions asked by PAM. This
is also done by the PolKit agent, which shows how the stack
is fragile, but it's what we have for now.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/922
js/gdm/authPrompt.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/js/gdm/authPrompt.js b/js/gdm/authPrompt.js
index 974f517783..13c7025c3c 100644
--- a/js/gdm/authPrompt.js
+++ b/js/gdm/authPrompt.js
@@ -209,7 +209,8 @@ var AuthPrompt = GObject.registerClass({
}
this._updateEntry(secret);
- this.setQuestion(question);
+ // HACK: the question comes directly from PAM
+ this.setQuestion(question.replace(/: *$/, '…').trim());
this.updateSensitivity(true);
this.emit('prompted');
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]