mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-07 06:59:45 +00:00
fix(ui/views/App/MainWindow/ContactEdit): missing unlockView call
This commit is contained in:
parent
a3f0062d73
commit
0e6faf306f
1 changed files with 2 additions and 3 deletions
|
|
@ -58,6 +58,7 @@ ColumnLayout {
|
|||
descriptionText: qsTr('removeContactDescription'),
|
||||
exitHandler: function (status) {
|
||||
if (status) {
|
||||
window.unlockView()
|
||||
window.setView('Contacts')
|
||||
ContactsListModel.removeContact(_contact)
|
||||
}
|
||||
|
|
@ -89,9 +90,7 @@ ColumnLayout {
|
|||
|
||||
if (sipAddress && sipAddress.length > 0) {
|
||||
_vcard.addSipAddress(
|
||||
Utils.startsWith(sipAddress, 'sip:')
|
||||
? sipAddress
|
||||
: 'sip:' + sipAddress
|
||||
Utils.startsWith(sipAddress, 'sip:') ? sipAddress : 'sip:' + sipAddress
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue