Skip to content

Commit fee2ec8

Browse files
committed
Don't continually refresh map while editing rule label/desc
(cherry-picked from 2c3548d)
1 parent d26063c commit fee2ec8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui/symbology-ng/qgsrulebasedrendererv2widget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,8 +649,8 @@ QgsRendererRulePropsWidget::QgsRendererRulePropsWidget( QgsRuleBasedRendererV2::
649649
connect( btnExpressionBuilder, SIGNAL( clicked() ), this, SLOT( buildExpression() ) );
650650
connect( btnTestFilter, SIGNAL( clicked() ), this, SLOT( testFilter() ) );
651651
connect( editFilter, SIGNAL( textChanged( QString ) ), this, SIGNAL( widgetChanged() ) );
652-
connect( editLabel, SIGNAL( textChanged( QString ) ), this, SIGNAL( widgetChanged() ) );
653-
connect( editDescription, SIGNAL( textChanged( QString ) ), this, SIGNAL( widgetChanged() ) );
652+
connect( editLabel, SIGNAL( editingFinished() ), this, SIGNAL( widgetChanged() ) );
653+
connect( editDescription, SIGNAL( editingFinished() ), this, SIGNAL( widgetChanged() ) );
654654
connect( groupSymbol, SIGNAL( toggled( bool ) ), this, SIGNAL( widgetChanged() ) );
655655
connect( groupScale, SIGNAL( toggled( bool ) ), this, SIGNAL( widgetChanged() ) );
656656
connect( mScaleRangeWidget, SIGNAL( rangeChanged( double, double ) ), this, SIGNAL( widgetChanged() ) );

0 commit comments

Comments
 (0)