Commit b9059872 authored by Kaitlyn Lee's avatar Kaitlyn Lee
Browse files

When adding a Cneteditor or Controlpointeditor, it will now emit newDockAvailable().

parent 08954334
Loading
Loading
Loading
Loading
+14 −14
Original line number Diff line number Diff line
@@ -678,7 +678,7 @@ namespace Isis {
    result->setWindowTitle(title);
    result->setObjectName(title);

    emit newWidgetAvailable(result);
    emit newDockAvailable(result);

    return result;
  }
@@ -822,7 +822,7 @@ namespace Isis {

      connect(result, SIGNAL(destroyed(QObject *)),
              this, SLOT(cleanupControlPointEditViewWidget(QObject *)));
      emit newWidgetAvailable(result);
      emit newDockAvailable(result);

// 2017-06-09 Ken commented out for Data Workshop demo
//      m_chipViewports = new ChipViewportsWidget(result);
+4 −2
Original line number Diff line number Diff line
@@ -236,6 +236,8 @@ namespace Isis {
   *   @history 2018-05-14 Tracie Sucharski - Serialize Footprint2DView rather than
   *                           MosaicSceneWidget. This will allow all parts of Footprint2DView to be
   *                           saved/restored including the ImageFileListWidget. Fixes #5422.
   *   @history 2018-05-14 Kaitlyn Lee - addControlPointEditView() and addCnetEditorView() now emit
   *                           newDockAvailable().
   */
  class Directory : public QObject {
    Q_OBJECT