0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-24 08:34:38 +03:00

Finish 1.4.126

This commit is contained in:
Arin Alexander 2019-04-11 11:53:31 +03:00
commit 3ae2c30cdd

View File

@ -54,7 +54,7 @@ void PreviewReportWidgetPrivate::setPages(ReportPages pages)
PageItemDesignIntf::Ptr PreviewReportWidgetPrivate::currentPage()
{
if (m_reportPages.count()>0 && m_reportPages.count()>=m_currentPage)
if (m_reportPages.count()>0 && m_reportPages.count() >= m_currentPage && m_currentPage > 0)
return m_reportPages.at(m_currentPage-1);
else return PageItemDesignIntf::Ptr(0);
}