Skip to content

Commit 7587972

Browse files
committed
Fix #8225
1 parent b075bf3 commit 7587972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,7 @@ void QgisApp::createStatusBar()
15321532
"center to a given position. The format is lat,lon or east,north" ) );
15331533
mCoordsEdit->setToolTip( tr( "Current map coordinate (lat,lon or east,north)" ) );
15341534
statusBar()->addPermanentWidget( mCoordsEdit, 0 );
1535-
connect( mCoordsEdit, SIGNAL( editingFinished() ), this, SLOT( userCenter() ) );
1535+
connect( mCoordsEdit, SIGNAL( returnPressed() ), this, SLOT( userCenter() ) );
15361536

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

0 commit comments

Comments
 (0)