GUI: Notify user the compare is ready if main window is inactive.
This commit is contained in:
parent
5643d816cf
commit
71aa189efb
|
@ -18,6 +18,7 @@
|
|||
|
||||
|
||||
#include "mainwindow.h"
|
||||
#include <QApplication>
|
||||
#include <QDebug>
|
||||
#include <QMenu>
|
||||
#include <QDirIterator>
|
||||
|
@ -355,6 +356,9 @@ void MainWindow::CheckDone()
|
|||
mActionClearResults.setEnabled(true);
|
||||
mActionSave.setEnabled(true);
|
||||
}
|
||||
|
||||
// Notify user - if the window is not active - that check is ready
|
||||
QApplication::alert(this, 3000);
|
||||
}
|
||||
|
||||
void MainWindow::ProgramSettings()
|
||||
|
|
Loading…
Reference in New Issue