Unverified Commit 0e132c14 authored by Kristin's avatar Kristin Committed by GitHub
Browse files

Merge pull request #293 from jessemapel/signals

Added graph modified signal to pointIgnored and pointUnIgnored
parents d527f232 55cdd2f4
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -607,6 +607,10 @@ namespace Isis {
                                                   m_vertexMap[targetSerial],
                                                   m_controlGraph).first;
        m_controlGraph[connection].strength++;

        if (edgeAdded) {
          emit networkModified(GraphModified);
        }
      }
    }
  }
@@ -781,6 +785,7 @@ namespace Isis {
            boost::remove_edge(m_vertexMap[sourceSerial],
                               m_vertexMap[targetSerial],
                               m_controlGraph);
            emit networkModified(GraphModified);
          }
        }
      }