Also allow text to be selected in file/config viewers
This commit is contained in:
parent
dc90fea30a
commit
26f06436f4
3 changed files with 4 additions and 1 deletions
|
@ -18,6 +18,7 @@ Group changes to describe their impact on the project, as follows:
|
|||
### Added
|
||||
- LDAP settings if SDK is built with OpenLDAP (requires 5.1.1 or higher linphone-sdk), will add contacts if any
|
||||
- SIP addresses & phone numbers can be selected in history & contact details view
|
||||
- Text can be selected in file viewer & config viewer
|
||||
- Prevent screen to turn off while recording a voice message
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -64,7 +64,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_margin="10dp"
|
||||
android:singleLine="false"
|
||||
android:text="@{viewModel.text}"/>
|
||||
android:textIsSelectable="true"
|
||||
android:text="@{viewModel.text}" />
|
||||
|
||||
</ScrollView>
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:layout_margin="10dp"
|
||||
android:singleLine="false"
|
||||
android:textIsSelectable="true"
|
||||
android:text="@{viewModel.text}"/>
|
||||
|
||||
</ScrollView>
|
||||
|
|
Loading…
Reference in a new issue