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

Commit 9be01f68 authored by Philip Junker's avatar Philip Junker Committed by Android (Google) Code Review
Browse files

Merge "Only toggle notification panel on KEYCODE_NOTIFICATION when setup is complete."

parents a0fadc4b 1f6c7286
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1662,7 +1662,7 @@ public class PhoneWindowManager implements WindowManagerPolicy {

    private void toggleNotificationPanel() {
        IStatusBarService statusBarService = getStatusBarService();
        if (statusBarService != null) {
        if (isUserSetupComplete() && statusBarService != null) {
            try {
                statusBarService.togglePanel();
            } catch (RemoteException e) {