Merge "Fixing incomplete RemoteAction clone" into pi-dev

am: 739199f3e9

Change-Id: I7e21a751ab3693c67ad6521e661a21d109e0c1fd
This commit is contained in:
Jan Althaus
2018-04-07 01:31:35 -07:00
committed by android-build-merger

View File

@@ -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;
}