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

Commit 71cadb94 authored by Lucas Silva's avatar Lucas Silva Committed by Android (Google) Code Review
Browse files

Merge "Open dream customization activity full-screen."

parents 21c44ef7 c70238c2
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -402,7 +402,10 @@ public class DreamBackend {
        if (dreamInfo == null || dreamInfo.settingsComponentName == null) {
            return;
        }
        uiContext.startActivity(new Intent().setComponent(dreamInfo.settingsComponentName));
        final Intent intent = new Intent()
                .setComponent(dreamInfo.settingsComponentName)
                .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        uiContext.startActivity(intent);
    }

    public void preview(DreamInfo dreamInfo) {