Navigation Menu

Skip to content

Commit

Permalink
Fix the absence of words in the advanced configuration widget
Browse files Browse the repository at this point in the history
  • Loading branch information
lbartoletti authored and nyalldawson committed May 18, 2020
1 parent 72d19c9 commit 2f42d48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgssnappinglayertreemodel.cpp
Expand Up @@ -573,7 +573,7 @@ QVariant QgsSnappingLayerTreeModel::data( const QModelIndex &idx, int role ) con
}
if ( activeTypes > 0 )
modes.append( tr( ", " ) );
modes.append( QgsSnappingConfig::snappingTypeFlagToString( ls.typeFlag() ) );
modes.append( QgsSnappingConfig::snappingTypeFlagToString( ls.typeFlag() & snappingTypeEnum.value( i ) ) );
activeTypes++;
}
}
Expand Down

0 comments on commit 2f42d48

Please sign in to comment.