mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-26 00:08:11 +00:00
Fixed negative gain not allowed in audio settings
This commit is contained in:
parent
16e59d8009
commit
6e13bc9aad
2 changed files with 5 additions and 2 deletions
|
|
@ -18,6 +18,9 @@ Group changes to describe their impact on the project, as follows:
|
|||
### Changed
|
||||
- Contacts lists now show LDAP contacts if any, as well as "generated" contacts from SIP addresses you have interacted with
|
||||
|
||||
### Fixed
|
||||
- Negative gain in audio settings is allowed again
|
||||
|
||||
## [4.6.1] - 2022-02-14
|
||||
|
||||
### Fixed
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@
|
|||
linphone:subtitle="@{@string/audio_settings_microphone_gain_summary}"
|
||||
linphone:listener="@{viewModel.microphoneGainListener}"
|
||||
linphone:defaultValue="@{viewModel.microphoneGain.toString()}"
|
||||
linphone:inputType="@{InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL}"/>
|
||||
linphone:inputType="@{InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_SIGNED | InputType.TYPE_NUMBER_FLAG_DECIMAL}"/>
|
||||
|
||||
<include
|
||||
layout="@layout/settings_widget_text"
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
linphone:subtitle="@{@string/audio_settings_playback_gain_summary}"
|
||||
linphone:listener="@{viewModel.playbackGainListener}"
|
||||
linphone:defaultValue="@{viewModel.playbackGain.toString()}"
|
||||
linphone:inputType="@{InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_DECIMAL}"/>
|
||||
linphone:inputType="@{InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_FLAG_SIGNED | InputType.TYPE_NUMBER_FLAG_DECIMAL}"/>
|
||||
|
||||
<TextView
|
||||
style="@style/settings_category_font"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue