From d3c45fbabcccb2e055eaf4cc46c43d989c172d51 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 24 May 2025 16:59:51 +0300 Subject: [PATCH] fix: act method not called in iframe sub-nodes --- src/graphics/ui/elements/InlineFrame.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/graphics/ui/elements/InlineFrame.cpp b/src/graphics/ui/elements/InlineFrame.cpp index cd01d45b..13625058 100644 --- a/src/graphics/ui/elements/InlineFrame.cpp +++ b/src/graphics/ui/elements/InlineFrame.cpp @@ -36,6 +36,7 @@ void InlineFrame::setDocument(const std::shared_ptr& document) { } void InlineFrame::act(float delta) { + Container::act(delta); if (document || src.empty()) { return; }