From 4989b492f3ec5e57a1d8b5972bb862ae7aa3bef2 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 10 Apr 2014 02:20:34 +1000 Subject: [PATCH] Added notification on succesful screenshot --- sleepyhead/docs/update_notes.html | 3 ++- sleepyhead/mainwindow.cpp | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) 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
-
  • Added ability to pin graphs
  • +
  • Added ability to pin graphs to keep them on screen
  • Fixed tranlation loading on Mac
  • Updated Dutch Tranlsations (Thanks Arie)
  • Fixed overview graph legends showing wrong details
  • +
  • F12 to Screenshot restored on Apple Mac platform
  • 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))); } }