Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[layouts] More helpful error messages
  • Loading branch information
nyalldawson committed Jul 19, 2018
1 parent 5498204 commit e6af079
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/layout/qgslayoutdesignerdialog.cpp
Expand Up @@ -1889,7 +1889,7 @@ void QgsLayoutDesignerDialog::exportToRaster()
case QgsLayoutExporter::FileError:
cursorOverride.release();
QMessageBox::warning( this, tr( "Image Export Error" ),
tr( "Cannot write to %1.\n\nThis file may be open in another application." ).arg( exporter.errorFile() ),
tr( "Cannot write to %1.\n\nThis file may be open in another application." ).arg( QDir::toNativeSeparators( exporter.errorFile() ) ),
QMessageBox::Ok,
QMessageBox::Ok );
break;
Expand All @@ -1900,7 +1900,7 @@ void QgsLayoutDesignerDialog::exportToRaster()
tr( "Trying to create image %1 (%2×%3 @ %4dpi ) "
"resulted in a memory overflow.\n\n"
"Please try a lower resolution or a smaller paper size." )
.arg( exporter.errorFile() ).arg( imageSize.width() ).arg( imageSize.height() ).arg( settings.dpi ),
.arg( QDir::toNativeSeparators( exporter.errorFile() ) ).arg( imageSize.width() ).arg( imageSize.height() ).arg( settings.dpi ),
QMessageBox::Ok, QMessageBox::Ok );
break;

Expand Down

0 comments on commit e6af079

Please sign in to comment.