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()
11351135 mCoordsLabel ->setWhatsThis (tr (" Shows the map coordinates at the "
11361136 " current cursor position. The display is continuously updated "
11371137 " as the mouse is moved." ));
1138- mCoordsLabel ->setToolTip (tr (" Map coordinates at mouse cursor position" ));
11391138 statusBar ()->addPermanentWidget (mCoordsLabel , 0 );
11401139 // add a label to show current scale
11411140 mScaleLabel = new QLabel (QString (),statusBar ());
@@ -4491,12 +4490,14 @@ void QgisApp::extentsViewToggled(bool theFlag)
44914490 {
44924491 // extents view mode!
44934492 mToggleExtentsViewButton ->setIcon (getThemeIcon (" extents.png" ));
4493+ mCoordsLabel ->setToolTip (tr (" Map coordinates for the current view extents" ));
44944494 showExtents ();
44954495 }
44964496 else
44974497 {
44984498 // mouse cursor pos view mode!
44994499 mToggleExtentsViewButton ->setIcon (getThemeIcon (" tracking.png" ));
4500+ mCoordsLabel ->setToolTip (tr (" Map coordinates at mouse cursor position" ));
45004501 }
45014502}
45024503
You can’t perform that action at this time.
0 commit comments