Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Banned keywords
  • Loading branch information
m-kuhn committed Feb 5, 2019
1 parent 5f1cea1 commit d288560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgspallabeling.cpp
Expand Up @@ -1170,7 +1170,7 @@ void QgsPalLayerSettings::calculateLabelSize( const QFontMetricsF *fm, const QSt

for ( const QString &line : multiLineSplit )
{
w = qMax( w, fm->width( line ) );
w = std::max( w, fm->width( line ) );
}

#if 0 // XXX strk
Expand Down

0 comments on commit d288560

Please sign in to comment.