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

Commit 9353903d authored by Sunny Goyal's avatar Sunny Goyal Committed by Android (Google) Code Review
Browse files

Merge "Fixing issue with folder inflation" into ub-launcher3-burnaby

parents b4de9140 c23da84a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -406,9 +406,9 @@ public class Folder extends LinearLayout implements DragSource, View.OnClickList
     *
     * @return A new UserFolder.
     */
    @SuppressLint("InflateParams")
    static Folder fromXml(Launcher launcher) {
        return (Folder) LayoutInflater.from(launcher).inflate(R.layout.user_folder,
                launcher.getDragLayer(), false);
        return (Folder) launcher.getLayoutInflater().inflate(R.layout.user_folder, null);
    }

    /**