mirror of
https://github.com/fralx/LimeReport.git
synced 2024-12-25 00:54:39 +03:00
Show error action in preview window has been fixed
This commit is contained in:
parent
8bbdefed20
commit
84953b6847
@ -307,6 +307,11 @@ void PreviewReportWindow::slotScalePercentChanged(int percent)
|
|||||||
m_scalePercent->setEditText(QString("%1%").arg(percent));
|
m_scalePercent->setEditText(QString("%1%").arg(percent));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void PreviewReportWindow::on_actionShowMessages_toggled(bool value)
|
||||||
|
{
|
||||||
|
m_previewReportWidget->setErrorsMesagesVisible(value);
|
||||||
|
}
|
||||||
|
|
||||||
}// namespace LimeReport
|
}// namespace LimeReport
|
||||||
|
|
||||||
|
|
||||||
@ -314,3 +319,7 @@ void PreviewReportWindow::slotScalePercentChanged(int percent)
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -85,6 +85,8 @@ private slots:
|
|||||||
void on_actionOne_to_one_triggered();
|
void on_actionOne_to_one_triggered();
|
||||||
void scaleComboboxChanged(QString text);
|
void scaleComboboxChanged(QString text);
|
||||||
void slotScalePercentChanged(int percent);
|
void slotScalePercentChanged(int percent);
|
||||||
|
void on_actionShowMessages_toggled(bool value);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ItemsReaderIntf* reader();
|
ItemsReaderIntf* reader();
|
||||||
void initPercentCombobox();
|
void initPercentCombobox();
|
||||||
|
Loading…
Reference in New Issue
Block a user