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

Commit 40f9daba authored by Xiyuan Xia's avatar Xiyuan Xia
Browse files

Rename fullscreen user switcher config

config_camelCase is the preferred format for config names.

Bug:19908596
Change-Id: I69f953fb1bd74ec61b2845c54a7c54c3c9b6b86e
parent 448e0828
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -295,7 +295,7 @@
    <bool name="config_enableAppShelf">false</bool>

    <!-- Whether to show the full screen user switcher. -->
    <bool name="enable_fullscreen_user_switcher">false</bool>
    <bool name="config_enableFullscreenUserSwitcher">false</bool>

</resources>
+1 −1
Original line number Diff line number Diff line
@@ -286,7 +286,7 @@ public class UserSwitcherController {
            return overrideUseFullscreenUserSwitcher != 0;
        }
        // Otherwise default to the build setting.
        return mContext.getResources().getBoolean(R.bool.enable_fullscreen_user_switcher);
        return mContext.getResources().getBoolean(R.bool.config_enableFullscreenUserSwitcher);
    }

    public void removeUserId(int userId) {