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

Commit 0f1ce045 authored by Hyunyoung Song's avatar Hyunyoung Song
Browse files

Fix container horizontal padding

Change-Id: I41b84db6d71df7f4e47098fa9ed7eda4465f18c3
parent e26d1008
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ public abstract class BaseContainerView extends FrameLayout {
        Launcher launcher = Launcher.getLauncher(context);
        int width = launcher.getDeviceProfile().availableWidthPx;
        if (FeatureFlags.LAUNCHER3_ALL_APPS_PULL_UP &&
                this instanceof AllAppsContainerView && launcher.getDeviceProfile().isLandscape) {
                this instanceof AllAppsContainerView && !launcher.getDeviceProfile().isLandscape) {
            mHorizontalPadding = 0;
        } else {
            mHorizontalPadding = DeviceProfile.getContainerPadding(context, width);