Using trim and empty to capture semantic concept of nothing being in there

pull/1298/head
ThomasSession 10 months ago
parent 48aacae6c5
commit 031a18061d

@ -120,7 +120,7 @@ class InputBar : RelativeLayout, InputBarEditTextDelegate, QuoteViewDelegate, Li
// region Updating
override fun inputBarEditTextContentChanged(text: CharSequence) {
microphoneButton.isVisible = text.all { it.isWhitespace() }
microphoneButton.isVisible = text.trim().isEmpty()
sendButton.isVisible = microphoneButton.isGone
delegate?.inputBarEditTextContentChanged(text)
}

Loading…
Cancel
Save