Skip to content

Commit

Permalink
Fix #8225
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Jul 5, 2013
1 parent b075bf3 commit 7587972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -1532,7 +1532,7 @@ void QgisApp::createStatusBar()
"center to a given position. The format is lat,lon or east,north" ) );
mCoordsEdit->setToolTip( tr( "Current map coordinate (lat,lon or east,north)" ) );
statusBar()->addPermanentWidget( mCoordsEdit, 0 );
connect( mCoordsEdit, SIGNAL( editingFinished() ), this, SLOT( userCenter() ) );
connect( mCoordsEdit, SIGNAL( returnPressed() ), this, SLOT( userCenter() ) );

// add a label to show current scale
mScaleLabel = new QLabel( QString(), statusBar() );
Expand Down

0 comments on commit 7587972

Please sign in to comment.