From 0e85372e4a62eb205819bc6c941a84299491c28e Mon Sep 17 00:00:00 2001 From: Ryan Kembrey Date: Fri, 22 Aug 2025 23:28:32 +1000 Subject: [PATCH] TechDraw: Fix frames resizing on select/hover --- src/Mod/TechDraw/Gui/QGIView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Mod/TechDraw/Gui/QGIView.cpp b/src/Mod/TechDraw/Gui/QGIView.cpp index 425e8bbd91..9953254c11 100644 --- a/src/Mod/TechDraw/Gui/QGIView.cpp +++ b/src/Mod/TechDraw/Gui/QGIView.cpp @@ -759,6 +759,7 @@ QRectF QGIView::customChildrenBoundingRect() const child->type() != UserType::QGCustomBorder && child->type() != UserType::QGCustomLabel && child->type() != UserType::QGICaption && + child->type() != UserType::QGIVertex && child->type() != UserType::QGICMark) { QRectF childRect = mapFromItem(child, child->boundingRect()).boundingRect(); result = result.united(childRect);