mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-05-07 14:44:01 +00:00
Repair delete entry bindings
This commit is contained in:
parent
2f534cc327
commit
223a7ab4f0
3 changed files with 4 additions and 2 deletions
|
|
@ -24,7 +24,7 @@ Item {
|
|||
property int deliveryCount : 0
|
||||
|
||||
signal deliveryStatusClecked()
|
||||
signal removeEntry()
|
||||
signal removeEntryRequested()
|
||||
|
||||
|
||||
Menu {
|
||||
|
|
@ -70,7 +70,7 @@ Item {
|
|||
iconSizeMenu: 17
|
||||
iconLayoutDirection: Qt.RightToLeft
|
||||
menuItemStyle : MenuItemStyle.auxRed
|
||||
onTriggered: removeEntry()
|
||||
onTriggered: container.removeEntryRequested()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -295,6 +295,7 @@ Row {
|
|||
|
||||
deliveryCount: deliveryLayout.model.count
|
||||
onDeliveryStatusClecked: deliveryLayout.visible = !deliveryLayout.visible
|
||||
onRemoveEntryRequested: removeEntry()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -117,6 +117,7 @@ Item {
|
|||
content: $chatEntry.content
|
||||
deliveryCount: deliveryLayout.model.count
|
||||
onDeliveryStatusClecked: deliveryLayout.visible = !deliveryLayout.visible
|
||||
onRemoveEntryRequested: removeEntry()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue