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

Commit 9f5f2973 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Sending onCreate to the callbacks after our call is complete" into...

Merge "Sending onCreate to the callbacks after our call is complete" into ub-launcher3-dorval-polish
parents 0e657ed2 14b3240e
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -464,9 +464,6 @@ public class Launcher extends BaseActivity
        setOrientation();

        setContentView(mLauncherView);
        if (mLauncherCallbacks != null) {
            mLauncherCallbacks.onCreate(savedInstanceState);
        }

        // Listen for broadcasts
        IntentFilter filter = new IntentFilter();
@@ -477,6 +474,10 @@ public class Launcher extends BaseActivity

        getSystemUiController().updateUiState(SystemUiController.UI_STATE_BASE_WINDOW,
                Themes.getAttrBoolean(this, R.attr.isWorkspaceDarkText));

        if (mLauncherCallbacks != null) {
            mLauncherCallbacks.onCreate(savedInstanceState);
        }
    }

    @Override