From a51139ae1d506246cd7946e0da09ee407039b562 Mon Sep 17 00:00:00 2001 From: Igor Date: Tue, 17 Sep 2024 14:09:03 +0200 Subject: [PATCH] fixed interactive object id --- src/framework/ui/view/interactiveprovider.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/framework/ui/view/interactiveprovider.cpp b/src/framework/ui/view/interactiveprovider.cpp index 1a8654c16cc56..7b3c7b76f7cdf 100644 --- a/src/framework/ui/view/interactiveprovider.cpp +++ b/src/framework/ui/view/interactiveprovider.cpp @@ -585,7 +585,7 @@ QString InteractiveProvider::objectId(const QVariant& val) const return QString(); } - objectId = QString(obj->metaObject()->className()); + objectId = QString(obj->metaObject()->className()) + "_" + QString::number(count); } else { objectId = "unknown_" + QString::number(count); }