0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 16:44:39 +03:00

Fix random crash while scrolling into the viewer, avoid the index out of range when the " m_currentPage " is not valid

This commit is contained in:
lchauvinQt 2016-12-06 16:28:28 +01:00
parent 21e3a6fbf9
commit 80fa86a3ca

View File

@ -16,6 +16,8 @@ namespace LimeReport {
bool PreviewReportWidgetPrivate::pageIsVisible(){
QGraphicsView* view = q_ptr->ui->graphicsView;
if ( m_currentPage-1 >= m_reportPages.size() || m_currentPage <= 0 )
return false;
PageItemDesignIntf::Ptr page = m_reportPages.at(m_currentPage-1);
return page->mapToScene(page->rect()).boundingRect().intersects(
view->mapToScene(view->viewport()->geometry()).boundingRect()