Commit cb09ba36 authored by Christopher Combs's avatar Christopher Combs
Browse files

Fixed issue with qmos unable to find poles. Fixes #4898

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@7795 41f8697f-d340-4b68-9986-7bafba869bb8
parent 9d825529
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@ namespace Isis {
  QRectF FindSpotGraphicsItem::calcRect() const {
    QRectF findRect;

    if(!m_centerPoint->isNull()) {
    if(m_centerPoint) {
      static const int size = 8;
      QPoint findSpotScreen =
          m_mosaicScene->getView()->mapFromScene(*m_centerPoint);
@@ -58,4 +58,3 @@ namespace Isis {
    return findRect;
  }
}