fix(StatusChatListItem): don't signal item selection if already selected
Closes #303
This commit is contained in:
parent
06e34cc5a1
commit
32eeb91cd2
|
@ -85,7 +85,9 @@ Column {
|
|||
popupMenuSlot.item.openHandler = originalOpenHandler
|
||||
return
|
||||
}
|
||||
statusChatList.chatItemSelected(model.chatId || model.id)
|
||||
if (!statusChatListItem.selected) {
|
||||
statusChatList.chatItemSelected(model.chatId || model.id)
|
||||
}
|
||||
}
|
||||
onUnmute: statusChatList.chatItemUnmuted(model.chatId || model.id)
|
||||
visible: {
|
||||
|
|
Loading…
Reference in New Issue