userMenu: More show()/hide() refactoring
Here's one show()/hide() sequence left out in commit 723a1c843
...
This commit is contained in:
parent
83d3225e57
commit
d955adbbad
@ -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() {
|
||||
|
Loading…
Reference in New Issue
Block a user