Report if a scan job has started.

This commit is contained in:
Saleem Edah-Tally
2025-07-13 22:35:09 +02:00
parent 24f58fa13d
commit 2b9290e4d8
2 changed files with 8 additions and 0 deletions

View File

@@ -591,3 +591,10 @@ bool XInsaneWidget::IsScannerDiscoveryRunning()
return false;
return m_backgroundDiscovery->IsRunning();
}
bool XInsaneWidget::IsScanning()
{
if (!m_scanProject)
return false;
return m_scanProject->GetWip();
}