Skip to content

Commit

Permalink
Merge pull request #2798 from SebDieBln/Fix_cboRenderingOrder
Browse files Browse the repository at this point in the history
[Bugfix] correctly check/uncheck 'Control feature rendering order' (fixes #14274)
  • Loading branch information
m-kuhn committed Feb 17, 2016
2 parents 8353698 + 40c6505 commit a44c890
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/symbology-ng/qgsrendererv2propertiesdialog.cpp
Expand Up @@ -282,7 +282,7 @@ void QgsRendererV2PropertiesDialog::changeOrderBy( const QgsFeatureRequest::Orde
{
mOrderBy = orderBy;
lineEditOrderBy->setText( mOrderBy.dump() );
checkboxEnableOrderBy->setChecked( orderBy.isEmpty() );
checkboxEnableOrderBy->setChecked( !orderBy.isEmpty() );
}


Expand Down

0 comments on commit a44c890

Please sign in to comment.