Skip to content

Commit

Permalink
[labeling] Fix line orientation option gets checked randomly
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 11, 2016
1 parent d4323ad commit 01a402c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/qgslabelinggui.cpp
Expand Up @@ -659,8 +659,7 @@ void QgsLabelingGui::init()
chkLineAbove->setChecked( lyr.placementFlags & QgsPalLayerSettings::AboveLine );
chkLineBelow->setChecked( lyr.placementFlags & QgsPalLayerSettings::BelowLine );
chkLineOn->setChecked( lyr.placementFlags & QgsPalLayerSettings::OnLine );
if ( !( lyr.placementFlags & QgsPalLayerSettings::MapOrientation ) )
chkLineOrientationDependent->setChecked( true );
chkLineOrientationDependent->setChecked( !( lyr.placementFlags & QgsPalLayerSettings::MapOrientation ) );

switch ( lyr.placement )
{
Expand Down

0 comments on commit 01a402c

Please sign in to comment.