Skip to content

Commit

Permalink
[GRASS] fixed region editing (partially reverted 7fc6b07)
Browse files Browse the repository at this point in the history
  • Loading branch information
blazek committed Jan 9, 2016
1 parent 24d279a commit e9198e5
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/plugins/grass/qgsgrassregion.cpp
Expand Up @@ -236,14 +236,14 @@ QgsGrassRegion::QgsGrassRegion( QgisInterface *iface,
connect( mRadioGroup, SIGNAL( buttonClicked( int ) ), this, SLOT( radioChanged() ) );

// Connect entries
connect( mNorth, SIGNAL( textEdited( const QString & ) ), this, SLOT( northChanged() ) );
connect( mSouth, SIGNAL( textEdited( const QString & ) ), this, SLOT( southChanged() ) );
connect( mEast, SIGNAL( textEdited( const QString & ) ), this, SLOT( eastChanged() ) );
connect( mWest, SIGNAL( textEdited( const QString & ) ), this, SLOT( westChanged() ) );
connect( mNSRes, SIGNAL( textEdited( const QString & ) ), this, SLOT( NSResChanged() ) );
connect( mEWRes, SIGNAL( textEdited( const QString & ) ), this, SLOT( EWResChanged() ) );
connect( mRows, SIGNAL( textEdited( const QString & ) ), this, SLOT( rowsChanged() ) );
connect( mCols, SIGNAL( textEdited( const QString & ) ), this, SLOT( colsChanged() ) );
connect( mNorth, SIGNAL( editingFinished() ), this, SLOT( northChanged() ) );
connect( mSouth, SIGNAL( editingFinished() ), this, SLOT( southChanged() ) );
connect( mEast, SIGNAL( editingFinished() ), this, SLOT( eastChanged() ) );
connect( mWest, SIGNAL( editingFinished() ), this, SLOT( westChanged() ) );
connect( mNSRes, SIGNAL( editingFinished() ), this, SLOT( NSResChanged() ) );
connect( mEWRes, SIGNAL( editingFinished() ), this, SLOT( EWResChanged() ) );
connect( mRows, SIGNAL( editingFinished() ), this, SLOT( rowsChanged() ) );
connect( mCols, SIGNAL( editingFinished() ), this, SLOT( colsChanged() ) );

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

0 comments on commit e9198e5

Please sign in to comment.