Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[orderby] Uncheck config options instead of disable
Fix #14144
  • Loading branch information
m-kuhn committed Jan 21, 2016
1 parent fe48485 commit ff8472d
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->setEnabled( orderBy.isEmpty() );
checkboxEnableOrderBy->setChecked( orderBy.isEmpty() );
}


Expand Down

0 comments on commit ff8472d

Please sign in to comment.