Add support to suppressing undo in Email
Bug: 7465798 Change-Id: I5f07b7821bb72ef8c0766da82d335792b010a11c
This commit is contained in:
parent
2e411dc68e
commit
c7636b8a47
@ -4080,12 +4080,16 @@ outer:
|
|||||||
if (undoValues == null || undoValues.size() == 0) {
|
if (undoValues == null || undoValues.size() == 0) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
ContentProviderOperation op =
|
final Boolean suppressUndo =
|
||||||
|
values.getAsBoolean(UIProvider.ConversationOperations.Parameters.SUPPRESS_UNDO);
|
||||||
|
if (suppressUndo == null || !suppressUndo.booleanValue()) {
|
||||||
|
final ContentProviderOperation op =
|
||||||
ContentProviderOperation.newUpdate(convertToEmailProviderUri(
|
ContentProviderOperation.newUpdate(convertToEmailProviderUri(
|
||||||
uri, ourBaseUri, false))
|
uri, ourBaseUri, false))
|
||||||
.withValues(undoValues)
|
.withValues(undoValues)
|
||||||
.build();
|
.build();
|
||||||
addToSequence(uri, op);
|
addToSequence(uri, op);
|
||||||
|
}
|
||||||
return update(ourUri, ourValues, null, null);
|
return update(ourUri, ourValues, null, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user