From c1d8050afc22295f2b65ea8458843dd73545d21d Mon Sep 17 00:00:00 2001 From: Anton Pastukhov Date: Sat, 7 Dec 2024 21:48:33 +0200 Subject: [PATCH] Propagate mouse events to ListWidget children --- src/dlangui/widgets/lists.d | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/dlangui/widgets/lists.d b/src/dlangui/widgets/lists.d index 1784c7ce..ea8a2c97 100644 --- a/src/dlangui/widgets/lists.d +++ b/src/dlangui/widgets/lists.d @@ -1349,7 +1349,8 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler { itemrc.right += rc.left - scrollOffset.x; itemrc.top += rc.top - scrollOffset.y; itemrc.bottom += rc.top - scrollOffset.y; - if (itemrc.isPointInside(Point(event.x, event.y))) { + auto point = Point(event.x, event.y); + if (itemrc.isPointInside(point)) { if (_adapter && _adapter.wantMouseEvents) { auto itemWidget = _adapter.itemWidget(i); if (itemWidget) { @@ -1358,6 +1359,12 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler { if (event.action == MouseAction.Move && event.noModifiers && itemWidget.hasTooltip) { itemWidget.scheduleTooltip(200); } + foreach (j; 0 .. itemWidget.childCount) { + auto child = itemWidget.child(j); + if (child.isPointInside(point)) { + child.onMouseEvent(event); + } + } itemWidget.onMouseEvent(event); itemWidget.parent = oldParent; }