Skip to content

Commit e9198e5

Browse files
committed
[GRASS] fixed region editing (partially reverted 7fc6b07)
1 parent 24d279a commit e9198e5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/plugins/grass/qgsgrassregion.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,14 @@ QgsGrassRegion::QgsGrassRegion( QgisInterface *iface,
236236
connect( mRadioGroup, SIGNAL( buttonClicked( int ) ), this, SLOT( radioChanged() ) );
237237

238238
// Connect entries
239-
connect( mNorth, SIGNAL( textEdited( const QString & ) ), this, SLOT( northChanged() ) );
240-
connect( mSouth, SIGNAL( textEdited( const QString & ) ), this, SLOT( southChanged() ) );
241-
connect( mEast, SIGNAL( textEdited( const QString & ) ), this, SLOT( eastChanged() ) );
242-
connect( mWest, SIGNAL( textEdited( const QString & ) ), this, SLOT( westChanged() ) );
243-
connect( mNSRes, SIGNAL( textEdited( const QString & ) ), this, SLOT( NSResChanged() ) );
244-
connect( mEWRes, SIGNAL( textEdited( const QString & ) ), this, SLOT( EWResChanged() ) );
245-
connect( mRows, SIGNAL( textEdited( const QString & ) ), this, SLOT( rowsChanged() ) );
246-
connect( mCols, SIGNAL( textEdited( const QString & ) ), this, SLOT( colsChanged() ) );
239+
connect( mNorth, SIGNAL( editingFinished() ), this, SLOT( northChanged() ) );
240+
connect( mSouth, SIGNAL( editingFinished() ), this, SLOT( southChanged() ) );
241+
connect( mEast, SIGNAL( editingFinished() ), this, SLOT( eastChanged() ) );
242+
connect( mWest, SIGNAL( editingFinished() ), this, SLOT( westChanged() ) );
243+
connect( mNSRes, SIGNAL( editingFinished() ), this, SLOT( NSResChanged() ) );
244+
connect( mEWRes, SIGNAL( editingFinished() ), this, SLOT( EWResChanged() ) );
245+
connect( mRows, SIGNAL( editingFinished() ), this, SLOT( rowsChanged() ) );
246+
connect( mCols, SIGNAL( editingFinished() ), this, SLOT( colsChanged() ) );
247247

248248
connect( QgsGrass::instance(), SIGNAL( regionChanged() ), SLOT( reloadRegion() ) );
249249
connect( mCanvas, SIGNAL( mapToolSet( QgsMapTool * ) ), SLOT( canvasMapToolSet( QgsMapTool * ) ) );

0 commit comments

Comments
 (0)