Fixed setting signature dirty on init

This commit is contained in:
M66B 2021-05-09 20:52:45 +02:00
parent 47c3f59488
commit 3fbacf9ea8
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ public class ActivitySignature extends ActivityBase {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
dirty = true;
if (count != s.length())
dirty = true;
}
@Override