Skip to content

Commit d1c0634

Browse files
committedDec 10, 2015
Rename geometry generator types
1 parent 595f24e commit d1c0634

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/gui/symbology-ng/qgssymbollayerv2widget.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3094,9 +3094,9 @@ QgsGeometryGeneratorSymbolLayerWidget::QgsGeometryGeneratorSymbolLayerWidget( co
30943094
{
30953095
setupUi( this );
30963096
modificationExpressionSelector->setLayer( const_cast<QgsVectorLayer*>( vl ) );
3097-
cbxGeometryType->addItem( tr( "Fill" ), QgsSymbolV2::Fill );
3098-
cbxGeometryType->addItem( tr( "Line" ), QgsSymbolV2::Line );
3099-
cbxGeometryType->addItem( tr( "Marker" ), QgsSymbolV2::Marker );
3097+
cbxGeometryType->addItem( tr( "Polygon / MultiPolygon" ), QgsSymbolV2::Fill );
3098+
cbxGeometryType->addItem( tr( "LineString / MultiLineString" ), QgsSymbolV2::Line );
3099+
cbxGeometryType->addItem( tr( "Point / MultiPoint" ), QgsSymbolV2::Marker );
31003100
connect( modificationExpressionSelector, SIGNAL( expressionParsed( bool ) ), this, SLOT( updateExpression() ) );
31013101
connect( cbxGeometryType, SIGNAL( currentIndexChanged( int ) ), this, SLOT( updateSymbolType() ) );
31023102
}

0 commit comments

Comments
 (0)
Please sign in to comment.