mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-07 14:44:01 +00:00
fix(SmartSearchBar): disable outgoing calls if necessary
This commit is contained in:
parent
c59a68c2d6
commit
578e1a2765
1 changed files with 1 additions and 1 deletions
|
|
@ -29,7 +29,7 @@ SearchBox {
|
|||
|
||||
onEnterPressed: {
|
||||
var sipAddress = view.interpretableSipAddress
|
||||
return sipAddress.length > 0 && searchBox.launchCall(sipAddress)
|
||||
return sipAddress.length > 0 && SettingsModel.outgoingCallsEnabled && searchBox.launchCall(sipAddress)
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue