File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
library/ui-strings/src/main/res/values
java/im/vector/app/features/home/room/detail/composer Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 794
794
<string name =" thread_list_modal_my_threads_subtitle" >Shows all threads you’ve participated in</string >
795
795
<string name =" thread_list_empty_title" >Keep discussions organized with threads</string >
796
796
<string name =" thread_list_empty_subtitle" >Threads help keep your conversations on-topic and easy to track.</string >
797
- <string name =" thread_list_not_available" >You\'re homeserver does not support listing threads yet.</string >
797
+ <string name =" thread_list_not_available" >Your homeserver does not support listing threads yet.</string >
798
798
<!-- Parameter %s will be replaced by the value of string reply_in_thread -->
799
799
<string name =" thread_list_empty_notice" >Tip: Long tap a message and use “%s”.</string >
800
800
<string name =" search_thread_from_a_thread" >From a Thread</string >
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ class MessageComposerViewModel @AssistedInject constructor(
138
138
}
139
139
140
140
private fun handleOnTextChanged (action : MessageComposerAction .OnTextChanged ) {
141
- val needsSendButtonVisibilityUpdate = currentComposerText.isEmpty () != action.text.isEmpty ()
141
+ val needsSendButtonVisibilityUpdate = currentComposerText.isBlank () != action.text.isBlank ()
142
142
currentComposerText = SpannableString (action.text)
143
143
if (needsSendButtonVisibilityUpdate) {
144
144
updateIsSendButtonVisibility(true )
Original file line number Diff line number Diff line change 85
85
app : layout_constraintCircle =" @id/breadcrumbsImageView"
86
86
app : layout_constraintCircleAngle =" 225"
87
87
app : layout_constraintCircleRadius =" 28dp"
88
+ app : tint =" ?vctr_content_primary"
88
89
tools : ignore =" MissingConstraints"
89
90
tools : visibility =" visible" />
90
91
You can’t perform that action at this time.
0 commit comments