0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-10-01 19:51:30 +03:00

Band relocation has been fixed

This commit is contained in:
Arin Alexander
2018-07-13 02:25:10 +03:00
parent 6015c77619
commit af12120260
5 changed files with 44 additions and 5 deletions

View File

@@ -964,7 +964,9 @@ void BaseDesignIntf::setGeometryProperty(QRectF rect)
setWidth(rect.width());
if (rect.height() != geometry().height())
setHeight(rect.height());
if (!isLoading()) notify("geometry",oldValue,rect);
if (!isLoading()) {
notify("geometry",oldValue,rect);
}
}
}