Fix accidentally-deleted functionality.

This commit is contained in:
Jeff Young 2025-08-19 18:27:03 +01:00
parent 57044fc89f
commit 5fa635602b

View File

@ -272,6 +272,14 @@ static int RPT_SEVERITY_ALL = RPT_SEVERITY_WARNING | RPT_SEVERITY_ERROR | RPT_SE
void WX_HTML_REPORT_PANEL::onCheckBox( wxCommandEvent& event )
{
if( event.GetEventObject() == m_checkBoxShowAll )
{
m_checkBoxShowErrors->SetValue( true );
m_checkBoxShowWarnings->SetValue( event.IsChecked() );
m_checkBoxShowInfos->SetValue( event.IsChecked() );
m_checkBoxShowActions->SetValue( event.IsChecked() );
}
CallAfter(
[&]()
{