Fix a bug that unchanged returns true even if TransformationMethod is changed.
This commit is contained in:
parent
e18d9e665f
commit
e92c83401b
1 changed files with 1 additions and 1 deletions
|
@ -266,7 +266,7 @@ public class EmojiTextView extends AppCompatTextView {
|
|||
Util.equals(previousBufferType, bufferType) &&
|
||||
useSystemEmoji == useSystemEmoji() &&
|
||||
!sizeChangeInProgress &&
|
||||
previousTransformationMethod != getTransformationMethod();
|
||||
previousTransformationMethod == getTransformationMethod();
|
||||
}
|
||||
|
||||
private boolean useSystemEmoji() {
|
||||
|
|
Loading…
Add table
Reference in a new issue