Merge "Fixing incomplete RemoteAction clone" into pi-dev

This commit is contained in:
Jan Althaus
2018-04-07 08:16:28 +00:00
committed by Android (Google) Code Review

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