Fix a bug that unchanged returns true even if TransformationMethod is changed.

This commit is contained in:
rainlion 2021-09-27 19:42:02 -07:00 committed by Cody Henthorne
parent e18d9e665f
commit e92c83401b

View file

@ -266,7 +266,7 @@ public class EmojiTextView extends AppCompatTextView {
Util.equals(previousBufferType, bufferType) && Util.equals(previousBufferType, bufferType) &&
useSystemEmoji == useSystemEmoji() && useSystemEmoji == useSystemEmoji() &&
!sizeChangeInProgress && !sizeChangeInProgress &&
previousTransformationMethod != getTransformationMethod(); previousTransformationMethod == getTransformationMethod();
} }
private boolean useSystemEmoji() { private boolean useSystemEmoji() {