fix(StatusChatListCategoryItem): Disable sensor when chevron clicked

List items' mouse area was also triggered when chevron
(sub menu) button was clicked so it was unsetting the
opened variable which is responsible for opening/closing
the chats list.
This commit is contained in:
Alexandra Betouni 2021-09-14 17:23:12 +03:00 committed by Michał Cieślak
parent 0c0d9bf919
commit 56212c547a
3 changed files with 22 additions and 13 deletions

View File

@ -42,14 +42,15 @@ Column {
highlighted: statusChatListCategory.dragged highlighted: statusChatListCategory.dragged
sensor.onClicked: { sensor.onClicked: {
if (sensor.enabled) {
if (mouse.button === Qt.RightButton && showActionButtons && !!statusChatListCategory.popupMenu) { if (mouse.button === Qt.RightButton && showActionButtons && !!statusChatListCategory.popupMenu) {
highlighted = true highlighted = true;
popupMenuSlot.item.popup(mouse.x + 4, mouse.y + 6) popupMenuSlot.item.popup(mouse.x + 4, mouse.y + 6);
return return
} }
statusChatListCategory.opened = !opened statusChatListCategory.opened = !opened;
}
} }
onTitleClicked: statusChatListCategory.opened = !opened onTitleClicked: statusChatListCategory.opened = !opened
onToggleButtonClicked: statusChatListCategory.opened = !opened onToggleButtonClicked: statusChatListCategory.opened = !opened
onMenuButtonClicked: { onMenuButtonClicked: {

View File

@ -60,7 +60,15 @@ StatusListItem {
icon.name: "chevron-down" icon.name: "chevron-down"
icon.width: 18 icon.width: 18
icon.rotation: statusChatListCategoryItem.opened ? 0 : 270 icon.rotation: statusChatListCategoryItem.opened ? 0 : 270
onClicked: statusChatListCategoryItem.toggleButtonClicked(mouse) onPressed: {
sensor.enabled = false;
}
onClicked: {
statusChatListCategoryItem.toggleButtonClicked(mouse);
}
onReleased: {
sensor.enabled = true;
}
} }
] ]
} }