feature: Correct response detection

This commit is contained in:
Gerard Gascón 2024-01-27 19:43:51 +01:00
parent 3669dec76f
commit 9de366915b
4 changed files with 38 additions and 12 deletions

View file

@ -8,10 +8,6 @@ namespace Messaging.Composer {
public string Text => fieldText.text;
public void EmptyText() {
fieldText.SetText("");
}
public void WriteEmoji(string emoji) {
fieldText.text += emoji;
}
@ -22,5 +18,9 @@ namespace Messaging.Composer {
string newText = _removeRegex.Replace(fieldText.text, "");
fieldText.SetText(newText);
}
public void ClearText() {
fieldText.SetText("");
}
}
}