Skip to content

Commit

Permalink
fixed interactive object id
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkorsukov committed Sep 17, 2024
1 parent 4558ed6 commit a51139a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/ui/view/interactiveprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit a51139a

Please sign in to comment.