forked from qt-creator/qt-creator
QmlDesigner.Instance: Change messaging order
This commit is contained in:
@@ -601,16 +601,16 @@ void NodeInstanceView::setBlockUpdates(bool block)
|
||||
|
||||
if (m_blockUpdates == 0) {
|
||||
m_nodeInstanceServer->setBlockUpdates(false);
|
||||
if (!m_valuePropertyChangeList.isEmpty()) {
|
||||
emitInstancePropertyChange(m_valuePropertyChangeList);
|
||||
m_valuePropertyChangeList.clear();
|
||||
}
|
||||
|
||||
if (!m_informationChangeSet.isEmpty()) {
|
||||
emitCustomNotification("__instance information changed__", m_informationChangeSet.toList());
|
||||
m_informationChangeSet.clear();
|
||||
}
|
||||
|
||||
if (!m_valuePropertyChangeList.isEmpty()) {
|
||||
emitInstancePropertyChange(m_valuePropertyChangeList);
|
||||
m_valuePropertyChangeList.clear();
|
||||
}
|
||||
|
||||
if (!m_renderImageChangeSet.isEmpty()) {
|
||||
emitCustomNotification("__instance render pixmap changed__", m_renderImageChangeSet.toList());
|
||||
m_renderImageChangeSet.clear();
|
||||
|
||||
Reference in New Issue
Block a user