Skip to content

Commit

Permalink
Fix cannot set width unit scale for raster image fill
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson authored and github-actions[bot] committed Dec 17, 2021
1 parent e7fdad6 commit c94e3f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/symbology/qgssymbollayerwidget.cpp
Expand Up @@ -4136,7 +4136,7 @@ void QgsRasterFillSymbolLayerWidget::mWidthUnitWidget_changed()
return;
}
mLayer->setWidthUnit( mWidthUnitWidget->unit() );
mLayer->setWidthMapUnitScale( mOffsetUnitWidget->getMapUnitScale() );
mLayer->setWidthMapUnitScale( mWidthUnitWidget->getMapUnitScale() );
emit changed();
}

Expand Down

0 comments on commit c94e3f7

Please sign in to comment.