From 71aa189efbbb221d755086958c63013be63d9362 Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Sat, 20 Jun 2009 23:23:54 +0300 Subject: [PATCH] GUI: Notify user the compare is ready if main window is inactive. --- gui/mainwindow.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 6b22ec82d..c38d58934 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -18,6 +18,7 @@ #include "mainwindow.h" +#include #include #include #include @@ -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()