parent
eca4e666d6
commit
66170a7b58
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Name: gnome-shell
|
Name: gnome-shell
|
||||||
Version: 40.1
|
Version: 40.1
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: Window management and application launching for GNOME
|
Summary: Window management and application launching for GNOME
|
||||||
|
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -246,6 +246,10 @@ desktop-file-validate %{buildroot}%{_datadir}/applications/evolution-calendar.de
|
|||||||
%{_mandir}/man1/gnome-shell.1*
|
%{_mandir}/man1/gnome-shell.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Jun 02 2021 Florian Müllner <fmuellner@redhat.com> - 40.1-4
|
||||||
|
- Fix regression in AuthList rebase
|
||||||
|
Resolves: #1966841
|
||||||
|
|
||||||
* Thu May 27 2021 Florian Müllner <fmuellner@redhat.com> - 40.1-3
|
* Thu May 27 2021 Florian Müllner <fmuellner@redhat.com> - 40.1-3
|
||||||
- Update generated stylesheets
|
- Update generated stylesheets
|
||||||
Resolves: #1965327
|
Resolves: #1965327
|
||||||
|
@ -234,7 +234,7 @@ index e65e0e9cf..b2c603a55 100644
|
|||||||
2.31.1
|
2.31.1
|
||||||
|
|
||||||
|
|
||||||
From 93bf4dffcd3d7790428bdc9c3398a50a6538b055 Mon Sep 17 00:00:00 2001
|
From 79c8beffbdabc7d0948bb7335f67ada441e68b4e Mon Sep 17 00:00:00 2001
|
||||||
From: Ray Strode <rstrode@redhat.com>
|
From: Ray Strode <rstrode@redhat.com>
|
||||||
Date: Mon, 17 Jul 2017 16:48:03 -0400
|
Date: Mon, 17 Jul 2017 16:48:03 -0400
|
||||||
Subject: [PATCH 2/2] gdmUtil: enable support for GDM's ChoiceList PAM
|
Subject: [PATCH 2/2] gdmUtil: enable support for GDM's ChoiceList PAM
|
||||||
@ -242,14 +242,14 @@ Subject: [PATCH 2/2] gdmUtil: enable support for GDM's ChoiceList PAM
|
|||||||
|
|
||||||
This commit hooks up support for GDM's ChoiceList PAM extension.
|
This commit hooks up support for GDM's ChoiceList PAM extension.
|
||||||
---
|
---
|
||||||
js/gdm/authPrompt.js | 71 +++++++++++++++++++++++++++++++++++++++++++
|
js/gdm/authPrompt.js | 69 +++++++++++++++++++++++++++++++++++++++++++
|
||||||
js/gdm/loginDialog.js | 5 +++
|
js/gdm/loginDialog.js | 5 ++++
|
||||||
js/gdm/util.js | 28 +++++++++++++++++
|
js/gdm/util.js | 28 ++++++++++++++++++
|
||||||
js/ui/unlockDialog.js | 7 +++++
|
js/ui/unlockDialog.js | 7 +++++
|
||||||
4 files changed, 111 insertions(+)
|
4 files changed, 109 insertions(+)
|
||||||
|
|
||||||
diff --git a/js/gdm/authPrompt.js b/js/gdm/authPrompt.js
|
diff --git a/js/gdm/authPrompt.js b/js/gdm/authPrompt.js
|
||||||
index 84c608b2f..4b889d8b5 100644
|
index 84c608b2f..b25897ea7 100644
|
||||||
--- a/js/gdm/authPrompt.js
|
--- a/js/gdm/authPrompt.js
|
||||||
+++ b/js/gdm/authPrompt.js
|
+++ b/js/gdm/authPrompt.js
|
||||||
@@ -4,6 +4,7 @@
|
@@ -4,6 +4,7 @@
|
||||||
@ -326,12 +326,11 @@ index 84c608b2f..4b889d8b5 100644
|
|||||||
}
|
}
|
||||||
|
|
||||||
setQuestion(question) {
|
setQuestion(question) {
|
||||||
@@ -448,10 +487,41 @@ var AuthPrompt = GObject.registerClass({
|
@@ -448,10 +487,39 @@ var AuthPrompt = GObject.registerClass({
|
||||||
|
|
||||||
this._entry.hint_text = question;
|
this._entry.hint_text = question;
|
||||||
|
|
||||||
+ this._authList.hide();
|
+ this._authList.hide();
|
||||||
+ this._label.show();
|
|
||||||
this._entry.show();
|
this._entry.show();
|
||||||
this._entry.grab_key_focus();
|
this._entry.grab_key_focus();
|
||||||
}
|
}
|
||||||
@ -358,7 +357,6 @@ index 84c608b2f..4b889d8b5 100644
|
|||||||
+ this._authList.addItem(key, text);
|
+ this._authList.addItem(key, text);
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ this._label.hide();
|
|
||||||
+ this._entry.hide();
|
+ this._entry.hide();
|
||||||
+ if (this._message.text == '')
|
+ if (this._message.text == '')
|
||||||
+ this._message.hide();
|
+ this._message.hide();
|
||||||
@ -368,7 +366,7 @@ index 84c608b2f..4b889d8b5 100644
|
|||||||
getAnswer() {
|
getAnswer() {
|
||||||
let text;
|
let text;
|
||||||
|
|
||||||
@@ -487,6 +557,7 @@ var AuthPrompt = GObject.registerClass({
|
@@ -487,6 +555,7 @@ var AuthPrompt = GObject.registerClass({
|
||||||
else
|
else
|
||||||
this._message.remove_style_class_name('login-dialog-message-hint');
|
this._message.remove_style_class_name('login-dialog-message-hint');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user