Commit 6a528bd2 authored by Ian Humphrey's avatar Ian Humphrey
Browse files

In qview's StereoTool removed 'S' shorcut. Fixes #2086.

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@5830 41f8697f-d340-4b68-9986-7bafba869bb8
parent e2b405e2
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -242,8 +242,7 @@ namespace Isis {
  QAction *StereoTool::toolPadAction(ToolPad *pad) {
    QAction *action = new QAction(pad);
    action->setIcon( QPixmap(toolIconDir() + "/3d-glasses-icon.png") );
    action->setToolTip("Stereo (S)");
    action->setShortcut(Qt::Key_S);
    action->setToolTip("Stereo");
    action->setWhatsThis("<strong>Functionality:</strong> "
               "<ul>"
                 "<li>Calculate elevation at a single point by creating a "
+3 −0
Original line number Diff line number Diff line
@@ -44,6 +44,9 @@ namespace Isis {
    *                        #775 and #1114.
    * @history 2013-05-09 Tracie Sucharski - When deleting (right button) a point, check for empty
    *                           network immediately print warning and return.  References #1493.
    * @history 2014-05-15 Ian Humphrey - Removed the shortcut from StereoTool to avoid conflict 
    *                         with StretchTool shortcut. Minor corrections for coding standards.
    *                         Fixes #2086.
    *
    */
  class StereoTool : public AbstractPlotTool {