| 1438 | */ |
| 1439 | |
| 1440 | void WConfiguration::OnCheckboxEnableWhenFaceDetectedClick( wxCommandEvent& event ) |
| 1441 | { |
| 1442 | wxGetApp().GetController().GetVisionPipeline().SetEnableWhenFaceDetected(m_chkEnableWhenFaceDetected->GetValue()); |
| 1443 | m_spinLocateFaceTimeout->Enable (m_chkEnableWhenFaceDetected->GetValue()); |
| 1444 | event.Skip(false); |
| 1445 | Changed (); |
| 1446 | } |
| 1447 | |
| 1448 | |
| 1449 | /*! |
nothing calls this directly
no test coverage detected