Navigation Menu

Skip to content

Commit

Permalink
fix mesh rendering settings
Browse files Browse the repository at this point in the history
  • Loading branch information
vcloarec authored and nyalldawson committed Nov 25, 2020
1 parent b480fea commit 74edcbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/mesh/qgsmeshrenderermeshsettingswidget.cpp
Expand Up @@ -72,10 +72,10 @@ void QgsMeshRendererMeshSettingsWidget::syncToLayer( )
switch ( mMeshType )
{
case Native:
settings = rendererSettings.triangularMeshSettings();
settings = rendererSettings.nativeMeshSettings();
break;
case Triangular:
settings = rendererSettings.nativeMeshSettings();
settings = rendererSettings.triangularMeshSettings();
break;
case Edge:
settings = rendererSettings.edgeMeshSettings();
Expand Down

0 comments on commit 74edcbe

Please sign in to comment.