Skip to content

Commit 6f06395

Browse files
author
timlinux
committed
Added better message for cases where gdal format does not allow building pyramids
git-svn-id: http://svn.osgeo.org/qgis/trunk@8975 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 342b4ce commit 6f06395

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/qgsrasterlayerproperties.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1608,7 +1608,8 @@ void QgsRasterLayerProperties::on_buttonBuildPyramids_clicked()
16081608
else if (res == "ERROR_WRITE_FORMAT")
16091609
{
16101610
QMessageBox::warning(this, tr("Building pyramids failed."),
1611-
tr("The file was not writeable. Some formats can not be written to, only read. You can also try to check the permissions and then try again.") );
1611+
tr("The file was not writeable. Some formats do not "
1612+
"support pyramid overviews. Consult the GDAL documentation if in doubt.") );
16121613
}
16131614
else if (res == "FAILED_NOT_SUPPORTED")
16141615
{

0 commit comments

Comments
 (0)