Fix error message format for readings in /tmp

This commit is contained in:
lupoDharkael
2017-12-19 20:48:18 +01:00
parent 2f5b5f4864
commit 36e3aaad27

View File

@@ -95,7 +95,7 @@ void AppLauncherWidget::launch(const QModelIndex &index) {
m_tempFile = FileNameHandler().generateAbsolutePath("/tmp") + ".png";
bool ok = m_pixmap.save(m_tempFile);
if (!ok) {
QMessageBox::about(this, tr("Error"), tr("Unable to write in /tmp."));
QMessageBox::about(this, tr("Error"), tr("Unable to write in") + "/tmp.");
return;
}
}