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() {