mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-29 17:59:21 +00:00
- Show history view on clicking notification bubble in account
- Fix call view - Fix empty conference URI as error
This commit is contained in:
parent
ed52503ef9
commit
d6ca4b1ab8
4 changed files with 14 additions and 17 deletions
|
|
@ -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()
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue