Skip to content

Commit 2c3548d

Browse files
committed
Don't continually refresh map while editing rule label/desc
1 parent 9b76202 commit 2c3548d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui/symbology-ng/qgsrulebasedrendererwidget.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -651,8 +651,8 @@ QgsRendererRulePropsWidget::QgsRendererRulePropsWidget( QgsRuleBasedRenderer::Ru
651651
connect( btnExpressionBuilder, SIGNAL( clicked() ), this, SLOT( buildExpression() ) );
652652
connect( btnTestFilter, SIGNAL( clicked() ), this, SLOT( testFilter() ) );
653653
connect( editFilter, SIGNAL( textChanged( QString ) ), this, SIGNAL( widgetChanged() ) );
654-
connect( editLabel, SIGNAL( textChanged( QString ) ), this, SIGNAL( widgetChanged() ) );
655-
connect( editDescription, SIGNAL( textChanged( QString ) ), this, SIGNAL( widgetChanged() ) );
654+
connect( editLabel, SIGNAL( editingFinished() ), this, SIGNAL( widgetChanged() ) );
655+
connect( editDescription, SIGNAL( editingFinished() ), this, SIGNAL( widgetChanged() ) );
656656
connect( groupSymbol, SIGNAL( toggled( bool ) ), this, SIGNAL( widgetChanged() ) );
657657
connect( groupScale, SIGNAL( toggled( bool ) ), this, SIGNAL( widgetChanged() ) );
658658
connect( mScaleRangeWidget, SIGNAL( rangeChanged( double, double ) ), this, SIGNAL( widgetChanged() ) );

0 commit comments

Comments
 (0)