Unverified Commit 1204b95d authored by Tracie Sucharski's avatar Tracie Sucharski Committed by GitHub
Browse files

Merge pull request #227 from kdl222/helpMenu

Removed the "What's This Action?" from CubeDnView
parents f0d678b0 b1001b2a
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -200,7 +200,7 @@ namespace Isis {
    tools->append(new HistogramTool(this));
    tools->append(new StatisticsTool(this));
    tools->append(new StereoTool(this));
    tools->append(new HelpTool(this));
    //tools->append(new HelpTool(this));

    tools->append(new TrackTool(statusBar()));

@@ -211,7 +211,7 @@ namespace Isis {
    m_viewMenu = menuBar()->addMenu("&View");
    m_optionsMenu = menuBar()->addMenu("&Options");
    m_windowMenu = menuBar()->addMenu("&Window");
    m_helpMenu = menuBar()->addMenu("&Help");
    //m_helpMenu = menuBar()->addMenu("&Help");

    for (int i = 0; i < tools->count(); i++) {
      Tool *tool = (*tools)[i];
+2 −0
Original line number Diff line number Diff line
@@ -85,6 +85,8 @@ namespace Isis {
   *                           AbstractProjectItemView now inherits from QMainWindow, so the
   *                           Workspace of this view is the centralWidget. This needs further work
   *                           to cleanup and fit in with the new docked view interface.git
   *   @history 2017-08-03 Kaitlyn Lee - Removed help menu and the "What's This?" action because the
   *                           ipce help menu has this action.
   */
  class CubeDnView : public AbstractProjectItemView {