Merge pull request #3766 from nextcloud/show_editview_when_edit_enabled

shows edit message view only when user edits a message
This commit is contained in:
Marcel Hibbe 2024-04-03 17:02:03 +02:00 committed by GitHub
commit f8851d824c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -510,6 +510,8 @@ class ChatActivity :
setContentView(binding.root)
setupSystemColors()
binding.messageInputView.messageSendButton.visibility = View.GONE
conversationUser = currentUserProvider.currentUser.blockingGet()
handleIntent(intent)

View file

@ -249,7 +249,8 @@
layout="@layout/edit_message_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginEnd="6dp" >
android:layout_marginEnd="6dp"
android:visibility="gone">
</include>
<com.nextcloud.talk.ui.MessageInput