Commit fc3715aa authored by Adam Goins's avatar Adam Goins
Browse files

Gave the ControlHealthMonitorView() a reference to the directory instance...

Gave the ControlHealthMonitorView() a reference to the directory instance rather than the activeControl
parent 9cccd59c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -810,7 +810,7 @@ namespace Isis {
        return NULL;
      }

      ControlHealthMonitorView *result = new ControlHealthMonitorView(project()->activeControl()->controlNet());
      ControlHealthMonitorView *result = new ControlHealthMonitorView(this);
      result->setWindowTitle(tr("Control NetHealth Monitor"));
      result->setObjectName(result->windowTitle());

+3 −0
Original line number Diff line number Diff line
@@ -238,6 +238,9 @@ namespace Isis {
   *                           MosaicSceneWidget. This will allow all parts of Footprint2DView to be
   *                           saved/restored including the ImageFileListWidget. Fixes #5422.
   *   @history 2018-06-07 Adam Goins - Added the addControlHealthMonitorView() method to directory.
   *                           Fixes #5435.
   *   @history 2018-06-19 Adam Goins - Gave the ControlHealthMonitorView() a reference to the
   *                           directory instance rather than the activeControl. Fixes #5435.
   *
   */
  class Directory : public QObject {