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

Commit 7111a268 authored by Hyunyoung Song's avatar Hyunyoung Song Committed by Android (Google) Code Review
Browse files

Merge "Remove relayouts b/29945805" into ub-launcher3-calgary

parents d1e0cec5 45eb757e
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -220,11 +220,10 @@ public class Hotseat extends FrameLayout
    }

    public void setBackgroundTransparent(boolean enable) {
        // This causes re-layout. Should replace the logic with simply setting the background alpha
        if (enable) {
            setBackground(null);
            mBackground.setAlpha(0);
        } else {
            setBackground(mBackground);
            mBackground.setAlpha(255);
        }
    }

+1 −0
Original line number Diff line number Diff line
@@ -444,5 +444,6 @@ public class AllAppsTransitionController implements TouchController, VerticalPul
        if (!mLauncher.isAllAppsVisible()) {
            setProgress(mShiftRange);
        }
        mHotseat.removeOnLayoutChangeListener(this);
    }
}