shellEntry: Remove isPassword property

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/619
This commit is contained in:
Umang Jain
2019-12-12 16:52:17 +05:30
parent b0b8ab6c73
commit 5adbfdb590
5 changed files with 7 additions and 27 deletions

View File

@@ -76,7 +76,7 @@ class KeyringDialog extends ModalDialog.ModalDialog {
can_focus: true,
x_expand: true,
});
ShellEntry.addContextMenu(this._passwordEntry, { isPassword: true });
ShellEntry.addContextMenu(this._passwordEntry);
this._passwordEntry.clutter_text.connect('activate', this._onPasswordActivate.bind(this));
this._workSpinner = new Animation.Spinner(WORK_SPINNER_ICON_SIZE, {
@@ -109,7 +109,7 @@ class KeyringDialog extends ModalDialog.ModalDialog {
can_focus: true,
x_expand: true,
});
ShellEntry.addContextMenu(this._confirmEntry, { isPassword: true });
ShellEntry.addContextMenu(this._confirmEntry);
this._confirmEntry.clutter_text.connect('activate', this._onConfirmActivate.bind(this));
if (rtl) {
layout.attach(this._confirmEntry, 0, row, 1, 1);