Added notification on succesful screenshot

This commit is contained in:
Mark Watkins 2014-04-10 02:20:34 +10:00
parent e13128122c
commit 4989b492f3
2 changed files with 6 additions and 2 deletions

View File

@ -7,10 +7,11 @@
</div>
<b>Changes in this version</b><br/>
<list>
<li>Added ability to pin graphs</li>
<li>Added ability to pin graphs to keep them on screen</li>
<li>Fixed tranlation loading on Mac</li>
<li>Updated Dutch Tranlsations (Thanks Arie)</li>
<li>Fixed overview graph legends showing wrong details</li>
<li>F12 to Screenshot restored on Apple Mac platform</li>
</list>
<p>Sleep Well!</p>

View File

@ -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)));
}
}