aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scxmleditor/plugin_interface/baseitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/scxmleditor/plugin_interface/baseitem.cpp')
-rw-r--r--src/plugins/scxmleditor/plugin_interface/baseitem.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/scxmleditor/plugin_interface/baseitem.cpp b/src/plugins/scxmleditor/plugin_interface/baseitem.cpp
index 861094321aa..7d87a68f91c 100644
--- a/src/plugins/scxmleditor/plugin_interface/baseitem.cpp
+++ b/src/plugins/scxmleditor/plugin_interface/baseitem.cpp
@@ -41,7 +41,8 @@ BaseItem::~BaseItem()
void BaseItem::checkParentBoundingRect()
{
BaseItem *parentBaseItem = this->parentBaseItem();
- if (parentBaseItem && type() >= InitialStateType && !parentBaseItem->blockUpdates()) {
+ if ((parentBaseItem && type() >= InitialStateType && !parentBaseItem->blockUpdates())
+ || (parentBaseItem && type() == StateWarningType)) {
auto parentStateItem = qgraphicsitem_cast<StateItem*>(parentBaseItem);
if (parentStateItem && (parentStateItem->type() >= StateType))
parentStateItem->updateBoundingRect();