Skip to content

Commit 5ff9792

Browse files
authored
Merge pull request #7949 from vector-im/feature/bma/fixSmallBugs
Fix small bugs
2 parents 6b98b30 + a586e34 commit 5ff9792

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

library/ui-strings/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@
794794
<string name="thread_list_modal_my_threads_subtitle">Shows all threads you’ve participated in</string>
795795
<string name="thread_list_empty_title">Keep discussions organized with threads</string>
796796
<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>
798798
<!-- Parameter %s will be replaced by the value of string reply_in_thread -->
799799
<string name="thread_list_empty_notice">Tip: Long tap a message and use “%s”.</string>
800800
<string name="search_thread_from_a_thread">From a Thread</string>

vector/src/main/java/im/vector/app/features/home/room/detail/composer/MessageComposerViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class MessageComposerViewModel @AssistedInject constructor(
138138
}
139139

140140
private fun handleOnTextChanged(action: MessageComposerAction.OnTextChanged) {
141-
val needsSendButtonVisibilityUpdate = currentComposerText.isEmpty() != action.text.isEmpty()
141+
val needsSendButtonVisibilityUpdate = currentComposerText.isBlank() != action.text.isBlank()
142142
currentComposerText = SpannableString(action.text)
143143
if (needsSendButtonVisibilityUpdate) {
144144
updateIsSendButtonVisibility(true)

vector/src/main/res/layout/item_breadcrumbs.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585
app:layout_constraintCircle="@id/breadcrumbsImageView"
8686
app:layout_constraintCircleAngle="225"
8787
app:layout_constraintCircleRadius="28dp"
88+
app:tint="?vctr_content_primary"
8889
tools:ignore="MissingConstraints"
8990
tools:visibility="visible" />
9091

0 commit comments

Comments
 (0)