Fix QGIVP boundingRect

This commit is contained in:
wandererfan
2018-08-06 11:57:20 -04:00
committed by wmayer
parent c0c36138d7
commit 20247dd88f
3 changed files with 7 additions and 4 deletions

View File

@@ -984,7 +984,9 @@ void QGIViewPart::dumpPath(const char* text,QPainterPath path)
QRectF QGIViewPart::boundingRect() const
{
return childrenBoundingRect();
// return childrenBoundingRect();
// return customChildrenBoundingRect();
return QGIView::boundingRect();
}
//QGIViewPart derived classes do not need a rotate view method as rotation is handled on App side.