Skip to content

Commit c690f53

Browse files
committed
Added lat,long or east,north to some tooltips
1 parent 45cb47c commit c690f53

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/qgisapp.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1395,8 +1395,8 @@ void QgisApp::createStatusBar()
13951395
mCoordsEdit->setWhatsThis( tr( "Shows the map coordinates at the "
13961396
"current cursor position. The display is continuously updated "
13971397
"as the mouse is moved. It also allows editing to set the canvas "
1398-
"center to a given position." ) );
1399-
mCoordsEdit->setToolTip( tr( "Current map coordinate (formatted as x,y)" ) );
1398+
"center to a given position. The format is lat,lon or east,north" ) );
1399+
mCoordsEdit->setToolTip( tr( "Current map coordinate (lat,lon or east,north)" ) );
14001400
statusBar()->addPermanentWidget( mCoordsEdit, 0 );
14011401
connect( mCoordsEdit, SIGNAL( editingFinished() ), this, SLOT( userCenter() ) );
14021402

src/plugins/coordinate_capture/coordinatecapture.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ void CoordinateCapture::initGui()
121121

122122
mpUserCrsEdit = new QLineEdit( mypWidget );
123123
mpUserCrsEdit->setReadOnly( true );
124-
mpUserCrsEdit->setToolTip( tr( "Coordinate in your selected CRS" ) );
124+
mpUserCrsEdit->setToolTip( tr( "Coordinate in your selected CRS (lat,lon or east,north)" ) );
125125

126126
mpCanvasEdit = new QLineEdit( mypWidget );
127127
mpCanvasEdit->setReadOnly( true );
128-
mpCanvasEdit->setToolTip( tr( "Coordinate in map canvas coordinate reference system" ) );
128+
mpCanvasEdit->setToolTip( tr( "Coordinate in map canvas coordinate reference system (lat,lon or east,north)" ) );
129129

130130
QPushButton * mypCopyButton = new QPushButton( mypWidget );
131131
mypCopyButton->setText( tr( "Copy to clipboard" ) );

0 commit comments

Comments
 (0)