diff --git a/sleepyhead/docs/update_notes.html b/sleepyhead/docs/update_notes.html
index 9a74779e..08fb9643 100644
--- a/sleepyhead/docs/update_notes.html
+++ b/sleepyhead/docs/update_notes.html
@@ -7,10 +7,11 @@
Changes in this version
-
Sleep Well!
diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index 901493e5..7f78cc73 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -755,7 +755,10 @@ void MainWindow::DelayedScreenshot() a+="/screenshot-"+QDateTime::currentDateTime().toString(Qt::ISODate)+".png"; qDebug() << "Saving screenshot to" << a; - if (!pixmap.save(a)) { Notify(tr("There was an error saving screenshot to file \"%1\"").arg(QDir::toNativeSeparators(a))); + if (!pixmap.save(a)) { + Notify(tr("There was an error saving screenshot to file \"%1\"").arg(QDir::toNativeSeparators(a))); + } else { + Notify(tr("Screenshot saved to file \"%1\"").arg(QDir::toNativeSeparators(a))); } }