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

Commit f53d101b authored by Kshitij's avatar Kshitij
Browse files

fix!: Resolve getWriter args in BaseLauncherBinder

parent 518e862e
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -386,7 +386,8 @@ public abstract class BaseLauncherBinder {
            }

            ModelWriter writer = mApp.getModel()
                    .getWriter(false /* verifyChanges */, CellPosMapper.DEFAULT, null);
                    .getWriter(mApp.getInvariantDeviceProfile().getDeviceProfile(mApp.getContext()).isVerticalBarLayout(),
                            false /* verifyChanges */, CellPosMapper.DEFAULT, null);
            List<Pair<ItemInfo, View>> bindItems = items.stream().map(i ->
                    Pair.create(i, inflater.inflateItem(i, writer, null))).toList();
            executeCallbacksTask(c -> c.bindInflatedItems(bindItems), executor);