diff --git a/linphone-app/ui/modules/Linphone/Account/AccountStatus.qml b/linphone-app/ui/modules/Linphone/Account/AccountStatus.qml index 1057e4323..1fbe5fc83 100644 --- a/linphone-app/ui/modules/Linphone/Account/AccountStatus.qml +++ b/linphone-app/ui/modules/Linphone/Account/AccountStatus.qml @@ -19,6 +19,12 @@ Item { property alias betterIcon : presenceLevel.betterIcon // --------------------------------------------------------------------------- + MouseArea { + id:mouseArea + anchors.fill:parent + + onClicked: accountStatus.clicked() + } ColumnLayout { anchors.fill:parent @@ -77,6 +83,10 @@ Item { id: messageCounter anchors.fill: parent count: CoreManager.eventCount + MouseArea{ + anchors.fill: parent + onClicked: window.setView('HistoryView') + } } } Item{//Spacer @@ -96,10 +106,5 @@ Item { } }//ColumnLayout - MouseArea { - id:mouseArea - anchors.fill:parent - - onClicked: accountStatus.clicked() - } + } diff --git a/linphone-app/ui/modules/Linphone/Calls/Calls.qml b/linphone-app/ui/modules/Linphone/Calls/Calls.qml index ca7f1dca6..5267b2496 100644 --- a/linphone-app/ui/modules/Linphone/Calls/Calls.qml +++ b/linphone-app/ui/modules/Linphone/Calls/Calls.qml @@ -141,18 +141,10 @@ ListView { var params = loader.params return params ? 'call_sign_' + params.string : '' } -/* - peerAddress: $call.peerAddress - localAddress: $call.localAddress - fullPeerAddress: $call.fullPeerAddress - fullLocalAddress: $call.fullLocalAddress - - onPeerAddressChanged: console.log("Call : " +peerAddress) - */ entry: $call - width: parent.width + width: calls.width onClicked: { if ($call.status !== CallModel.CallStatusEnded) { diff --git a/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js b/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js index 10f05715b..4f503429e 100644 --- a/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js +++ b/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.js @@ -107,7 +107,7 @@ function handleRouteChanged (route) { dialog._routeOk = route.length === 0 || Linphone.SipAddressesModel.addressIsValid(route) } function handleConferenceUriChanged (uri) { - dialog._conferenceUriOk = Linphone.SipAddressesModel.addressIsValid(uri) + dialog._conferenceUriOk = uri=='' || Linphone.SipAddressesModel.addressIsValid(uri) } function handleServerAddressChanged (address) { diff --git a/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml b/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml index de583ca7d..50c588b0c 100644 --- a/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml +++ b/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml @@ -16,7 +16,7 @@ DialogPlus { property bool _sipAddressOk: false property bool _serverAddressOk: false property bool _routeOk: false - property bool _conferenceUriOk: false + property bool _conferenceUriOk: true buttons: [ TextButtonA {