File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1135,7 +1135,6 @@ void QgisApp::createStatusBar()
1135
1135
mCoordsLabel ->setWhatsThis (tr (" Shows the map coordinates at the "
1136
1136
" current cursor position. The display is continuously updated "
1137
1137
" as the mouse is moved." ));
1138
- mCoordsLabel ->setToolTip (tr (" Map coordinates at mouse cursor position" ));
1139
1138
statusBar ()->addPermanentWidget (mCoordsLabel , 0 );
1140
1139
// add a label to show current scale
1141
1140
mScaleLabel = new QLabel (QString (),statusBar ());
@@ -4491,12 +4490,14 @@ void QgisApp::extentsViewToggled(bool theFlag)
4491
4490
{
4492
4491
// extents view mode!
4493
4492
mToggleExtentsViewButton ->setIcon (getThemeIcon (" extents.png" ));
4493
+ mCoordsLabel ->setToolTip (tr (" Map coordinates for the current view extents" ));
4494
4494
showExtents ();
4495
4495
}
4496
4496
else
4497
4497
{
4498
4498
// mouse cursor pos view mode!
4499
4499
mToggleExtentsViewButton ->setIcon (getThemeIcon (" tracking.png" ));
4500
+ mCoordsLabel ->setToolTip (tr (" Map coordinates at mouse cursor position" ));
4500
4501
}
4501
4502
}
4502
4503
You can’t perform that action at this time.
0 commit comments