mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
Fixed hidden reply area when adding file to send area
This commit is contained in:
parent
24d808b1a7
commit
b88b6a8093
2 changed files with 6 additions and 2 deletions
|
|
@ -76,7 +76,7 @@ Group changes to describe their impact on the project, as follows:
|
|||
### Changed
|
||||
- Added shrink resources to release config in gradle
|
||||
|
||||
### Fixed
|
||||
### Fixed
|
||||
- Remove AuthInfo when configuring a CardDAV friend list if synchronization fails
|
||||
- Added missing toast when starting a group call or meeting if there's an issue
|
||||
- Fixed crash in RecordingPlayerFragment due to used lateinit property before it's initialized
|
||||
|
|
@ -357,7 +357,7 @@ Group changes to describe their impact on the project, as follows:
|
|||
- Reverted the way of playing incoming call ringone (you may have to configure your own ringtone again), was causing various issues depending on devices/firmwares
|
||||
- Show all call history entries if only one account is configured (workaround for missing history for now until a proper fix will be done in SDK)
|
||||
|
||||
### Fixed
|
||||
### Fixed
|
||||
- Issue preventing bluetooth Hearing Aids from working properly (and fixed earpiece/hearing aids icon)
|
||||
- Prevent Qr Code scanner to use static picture camera
|
||||
- Prevent user from connecting the same account multiple times
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@
|
|||
<include
|
||||
android:id="@+id/reply_area"
|
||||
layout="@layout/chat_conversation_reply_area"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
bind:viewModel="@{viewModel}"
|
||||
android:visibility="@{viewModel.isReplying ? View.VISIBLE : View.GONE, default=gone}"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
|
@ -42,6 +44,8 @@
|
|||
<include
|
||||
android:id="@+id/edit_area"
|
||||
layout="@layout/chat_conversation_edit_area"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
bind:viewModel="@{viewModel}"
|
||||
android:visibility="@{viewModel.isEditing ? View.VISIBLE : View.GONE, default=gone}"
|
||||
app:layout_constraintTop_toBottomOf="@id/reply_area" />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue