Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 959350fd authored by Fabian Kozynski's avatar Fabian Kozynski Committed by android-build-merger
Browse files

Merge "Fixes default setting for showing MultiUserSwitch" into qt-dev

am: 4244434b

Change-Id: Ibd26faebeb890ff2d83a21673663a3877a700a22
parents 2f84b242 4244434b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -98,8 +98,10 @@ public class MultiUserSwitch extends FrameLayout implements View.OnClickListener
        // Short-circuiting from UserManager. Needs to be extracted because of SystemUI boolean flag
        // qs_show_user_switcher_for_single_user

        // The default in UserManager is to show the switcher. We want to not show it unless the
        // user explicitly requests it in Settings
        final boolean userSwitcherEnabled = Settings.Global.getInt(mContext.getContentResolver(),
                Settings.Global.USER_SWITCHER_ENABLED, 1) != 0;
                Settings.Global.USER_SWITCHER_ENABLED, 0) != 0;

        if (!UserManager.supportsMultipleUsers()
                || mUserManager.hasUserRestriction(UserManager.DISALLOW_USER_SWITCH)