mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-29 18:08:58 +03:00
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:
commit
f8851d824c
2 changed files with 4 additions and 1 deletions
|
@ -510,6 +510,8 @@ class ChatActivity :
|
|||
setContentView(binding.root)
|
||||
setupSystemColors()
|
||||
|
||||
binding.messageInputView.messageSendButton.visibility = View.GONE
|
||||
|
||||
conversationUser = currentUserProvider.currentUser.blockingGet()
|
||||
|
||||
handleIntent(intent)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue