Skip to content

Commit

Permalink
Fix papercut in rule based labeling widget where it's possible
Browse files Browse the repository at this point in the history
to uncheck BOTH the filter and else radio buttons
  • Loading branch information
nyalldawson committed Jun 4, 2021
1 parent 7f69678 commit 1fcb975
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gui/labeling/qgsrulebasedlabelingwidget.cpp
Expand Up @@ -603,6 +603,10 @@ QgsLabelingRulePropsWidget::QgsLabelingRulePropsWidget( QgsRuleBasedLabeling::Ru
{
setupUi( this );

QButtonGroup *radioGroup = new QButtonGroup( this );
radioGroup->addButton( mFilterRadio );
radioGroup->addButton( mElseRadio );

mElseRadio->setChecked( mRule->isElse() );
mFilterRadio->setChecked( !mRule->isElse() );
editFilter->setText( mRule->filterExpression() );
Expand Down

0 comments on commit 1fcb975

Please sign in to comment.