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

Commit 82dc8216 authored by Suprabh Shukla's avatar Suprabh Shukla Committed by Android (Google) Code Review
Browse files

Merge "Finishing activity when the dialog is canceled"

parents 798ac8d5 83abd44c
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -694,6 +694,11 @@ public class PackageInstallerActivity extends Activity implements OnClickListene
                    .setNegativeButton(R.string.cancel, ((dialog, which) -> getActivity().finish()))
                    .create();
        }

        @Override
        public void onCancel(DialogInterface dialog) {
            getActivity().finish();
        }
    }

    /**