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

fork-5.53.8
rainlion 2021-09-27 19:42:02 -07:00 zatwierdzone przez Cody Henthorne
rodzic e18d9e665f
commit e92c83401b
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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