Index: src/app/qgsvectorlayerproperties.cpp =================================================================== --- src/app/qgsvectorlayerproperties.cpp (revision 14105) +++ src/app/qgsvectorlayerproperties.cpp (working copy) @@ -756,8 +756,14 @@ } else { - QString typeString( QGis::qgisVectorGeometryType[layer->geometryType()] ); + QString typeString( QGis::qgisVectorGeometryType[type] ); + QGis::WkbType wkb = layer->wkbType(); + if ( wkb >= QGis::WKBPoint25D ) + { + typeString += "3D"; + } + myMetadata += ""; myMetadata += tr( "Geometry type of the features in this layer: %1" ).arg( typeString ); myMetadata += "";