Skip to content
Snippets Groups Projects
Commit 81859e2b authored by Marco Bubke's avatar Marco Bubke
Browse files

Do update the bounging rect for a empty item list too

parent eebc56e9
No related branches found
No related tags found
No related merge requests found
...@@ -123,18 +123,17 @@ void SelectionTool::mouseMoveEvent(const QList<QGraphicsItem*> &/*itemList*/, ...@@ -123,18 +123,17 @@ void SelectionTool::mouseMoveEvent(const QList<QGraphicsItem*> &/*itemList*/,
void SelectionTool::hoverMoveEvent(const QList<QGraphicsItem*> &itemList, void SelectionTool::hoverMoveEvent(const QList<QGraphicsItem*> &itemList,
QGraphicsSceneMouseEvent * /*event*/) QGraphicsSceneMouseEvent * /*event*/)
{ {
if (itemList.isEmpty()) if (!itemList.isEmpty()) {
return;
ResizeHandleItem* resizeHandle = ResizeHandleItem::fromGraphicsItem(itemList.first()); ResizeHandleItem* resizeHandle = ResizeHandleItem::fromGraphicsItem(itemList.first());
if (resizeHandle) { if (resizeHandle) {
view()->changeToResizeTool(); view()->changeToResizeTool();
return; return;
} }
if (topSelectedItemIsMovable(itemList))
view()->changeToMoveTool();
if (topSelectedItemIsMovable(itemList))
view()->changeToMoveTool();
}
FormEditorItem *topSelectableItem = 0; FormEditorItem *topSelectableItem = 0;
......
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