Skip to content

Commit

Permalink
MarkerLine symbol layer widget: Fixed handling of floating point mark…
Browse files Browse the repository at this point in the history
…er intervals

git-svn-id: http://svn.osgeo.org/qgis/trunk@13420 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
wonder committed May 4, 2010
1 parent 97b8afe commit bdc4a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/symbology-ng/qgssymbollayerv2widget.cpp
Expand Up @@ -366,7 +366,7 @@ void QgsMarkerLineSymbolLayerV2Widget::setSymbolLayer( QgsSymbolLayerV2* layer )
mLayer = static_cast<QgsMarkerLineSymbolLayerV2*>( layer );

// set values
spinInterval->setValue(( int ) mLayer->interval() );
spinInterval->setValue( mLayer->interval() );
chkRotateMarker->setChecked( mLayer->rotateMarker() );
spinOffset->setValue( mLayer->offset() );
updateMarker();
Expand Down

0 comments on commit bdc4a9c

Please sign in to comment.