Skip to content

Commit

Permalink
Change "Best Fit" tool tip to "Zoom to show all" Refs #6133
Browse files Browse the repository at this point in the history
A bit more reflective of what it does.
  • Loading branch information
martyngigg authored and OwenArnold committed Jan 25, 2013
1 parent 23ad660 commit 4b000d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/Mantid/MantidPlot/src/ApplicationWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,6 @@ void ApplicationWindow::initToolBars()
plotTools->addAction(actionAddFunctionCurve);
plotTools->addAction(actionNewLegend);
plotTools->addSeparator ();
plotTools->addAction(actionUnzoom);

dataTools = new QActionGroup( this );
dataTools->setExclusive( true );
Expand Down Expand Up @@ -945,6 +944,7 @@ void ApplicationWindow::initToolBars()
btnZoomOut->setCheckable( true );
btnZoomOut->setIcon(QIcon(getQPixmap("zoomOut_xpm")) );
plotTools->addAction(btnZoomOut);
plotTools->addAction(actionUnzoom);


btnCursor = new QAction(tr("&Data Reader"), this);
Expand Down Expand Up @@ -13635,7 +13635,7 @@ void ApplicationWindow::translateActionsStrings()

actionUnzoom->setMenuText(tr("&Rescale to Show All"));
actionUnzoom->setShortcut(tr("Ctrl+Shift+R"));
actionUnzoom->setToolTip(tr("Best fit"));
actionUnzoom->setToolTip(tr("Zoom to show all"));

actionNewLegend->setMenuText( tr("New &Legend"));
actionNewLegend->setShortcut(tr("Ctrl+L"));
Expand Down

0 comments on commit 4b000d8

Please sign in to comment.