diff options
author | Koop Mast <kwm@FreeBSD.org> | 2018-09-30 11:58:29 +0000 |
---|---|---|
committer | Koop Mast <kwm@FreeBSD.org> | 2018-09-30 11:58:29 +0000 |
commit | 951c1f5d1c7354f058f5919d858dbb0c174dc73e (patch) | |
tree | 6146e775343aaf339921799078894a48fef9aa15 /x11/gnome-shell/files/patch-js_gdm_loginDialog.js | |
parent | Remove expired ports: (diff) |
The FreeBSD GNOME team proudly presents GNOME 3.28 for FreeBSD.
The offical GNOME 3.28 release notes can be found at
https://help.gnome.org/misc/release-notes/3.28/
Thanks to Antoine Brodin for running the exp-runs.
PR: 229761
Notes
Notes:
svn path=/head/; revision=480951
Diffstat (limited to 'x11/gnome-shell/files/patch-js_gdm_loginDialog.js')
-rw-r--r-- | x11/gnome-shell/files/patch-js_gdm_loginDialog.js | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/x11/gnome-shell/files/patch-js_gdm_loginDialog.js b/x11/gnome-shell/files/patch-js_gdm_loginDialog.js deleted file mode 100644 index 826af5f8b034..000000000000 --- a/x11/gnome-shell/files/patch-js_gdm_loginDialog.js +++ /dev/null @@ -1,23 +0,0 @@ ---- js/gdm/loginDialog.js.orig 2012-03-24 21:19:24.000000000 -0500 -+++ js/gdm/loginDialog.js 2012-03-24 21:21:23.000000000 -0500 -@@ -301,11 +301,17 @@ - this.actor.connect('key-focus-in', Lang.bind(this, this._moveFocusToItems)); - }, - -- _moveFocusToItems: function() { -- let hasItems = Object.keys(this._items).length > 0; -+ _hasItems: function() { -+ for (let userName in this._items) { -+ return true; -+ } -+ return false; -+ }, - -- if (!hasItems) -+ _moveFocusToItems: function() { -+ if (!this._hasItems()) { - return; -+ } - - if (global.stage.get_key_focus() != this.actor) - return; |