Skip to content

Commit 40c6505

Browse files
committedFeb 16, 2016
correctly check/uncheck 'Control feature rendering order' (fixes #14274)
1 parent 1ffccf0 commit 40c6505

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/symbology-ng/qgsrendererv2propertiesdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ void QgsRendererV2PropertiesDialog::changeOrderBy( const QgsFeatureRequest::Orde
282282
{
283283
mOrderBy = orderBy;
284284
lineEditOrderBy->setText( mOrderBy.dump() );
285-
checkboxEnableOrderBy->setChecked( orderBy.isEmpty() );
285+
checkboxEnableOrderBy->setChecked( !orderBy.isEmpty() );
286286
}
287287

288288

0 commit comments

Comments
 (0)
Please sign in to comment.