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

Commit ab78047a authored by Jan Althaus's avatar Jan Althaus
Browse files

Fixing incomplete RemoteAction clone

Bug: 77631078
Test: atest CtsAndroidAppTestCases:android.app.cts.RemoteActionTest
Change-Id: Ifd6617baf67993141e2ee85def8fb84c88cbe3e7
parent 4d289593
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -122,6 +122,7 @@ public final class RemoteAction implements Parcelable {
    public RemoteAction clone() {
        RemoteAction action = new RemoteAction(mIcon, mTitle, mContentDescription, mActionIntent);
        action.setEnabled(mEnabled);
        action.setShouldShowIcon(mShouldShowIcon);
        return action;
    }