From d955adbbadb639ed2bc4b0ef92f0d65eed8ac591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 10 May 2012 15:42:36 +0200 Subject: [PATCH] userMenu: More show()/hide() refactoring Here's one show()/hide() sequence left out in commit 723a1c843 ... --- js/ui/userMenu.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/js/ui/userMenu.js b/js/ui/userMenu.js index 5ae4ae6d6..93f4dc337 100644 --- a/js/ui/userMenu.js +++ b/js/ui/userMenu.js @@ -544,12 +544,9 @@ const UserMenuButton = new Lang.Class({ _updateSwitchUser: function() { let allowSwitch = !this._lockdownSettings.get_boolean(DISABLE_USER_SWITCH_KEY); - if (allowSwitch && - this._userManager.can_switch() && - this._userManager.has_multiple_users) - this._loginScreenItem.actor.show(); - else - this._loginScreenItem.actor.hide(); + this._loginScreenItem.actor.visible = allowSwitch && + this._userManager.can_switch() && + this._userManager.has_multiple_users; }, _updateLogout: function() {