Skip to content
Snippets Groups Projects
Commit aff7d3fd authored by Kai Koehne's avatar Kai Koehne
Browse files

QmlDesigner: Fix 'jumping around' when moving items in the Visual Editor

This regression was caused by Qt change
6f88388db4e8e2, which disabled the automatic setting of QObject::parent

Reviewed-by: Marco Bubke
parent 17884141
No related branches found
No related tags found
No related merge requests found
......@@ -261,7 +261,7 @@ NodeInstance NodeInstance::parent() const
bool NodeInstance::hasParent() const
{
return m_nodeInstance->object()->parent();
return m_nodeInstance->parent();
}
/*!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment