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

Commit 85efb4b0 authored by Tony's avatar Tony
Browse files

Launch wallpaper picker with rectangular reveal

There was a logic error causing it to be launched with null
activity options.

Bug: 37904252
Change-Id: Ia44b7bccf0b7f83ceab9d3949542b79a842e4873
parent acaf5b3a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2533,8 +2533,8 @@ public class Launcher extends BaseActivity
                .putExtra(Utilities.EXTRA_WALLPAPER_OFFSET, offset);

        String pickerPackage = getString(R.string.wallpaper_picker_package);
        boolean hasTargetPackage = TextUtils.isEmpty(pickerPackage);
        if (!hasTargetPackage) {
        boolean hasTargetPackage = !TextUtils.isEmpty(pickerPackage);
        if (hasTargetPackage) {
            intent.setPackage(pickerPackage);
        }