Commit 16a86429 authored by Jesse Mapel's avatar Jesse Mapel Committed by Jesse Mapel
Browse files

Fixed qview crashing when reading pixel value

parent 47c3ea41
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -78,6 +78,7 @@ Keywords when running CAMSTATS. [#3605](https://github.com/USGS-Astrogeology/IS
- Fixed a bug where the measure residuals reported in the bundleout.txt file were incorrect. [#4655](https://github.com/USGS-Astrogeology/ISIS3/issues/4655)
- Fixed a bug where jigsaw would raise an error when solving for framing camera pointing in observation mode. [#4686](https://github.com/USGS-Astrogeology/ISIS3/issues/4686)
- Fixed slow runs of automos when the priority was BAND. [#4793](https://github.com/USGS-Astrogeology/ISIS3/pull/4793)
- Fixed qview crashing when attempting to load image DNs. [4818](https://github.com/USGS-Astrogeology/ISIS3/issues/4818)

## [6.0.0] - 2021-08-27

+2 −4
Original line number Diff line number Diff line
@@ -273,10 +273,7 @@ namespace Isis {
  }

  QString TrackTool::updateColorLabel(QPoint p, ViewportBuffer *buf, QLabel *label) {
    if(buf->working()) {
      label->setText("BUSY");
    }
    else {
    if(!buf->working()) {
      const QRect rRect = buf->bufferXYRect();

      if(p.x() >= rRect.left() && p.x() < rRect.right() &&
@@ -286,6 +283,7 @@ namespace Isis {
        return PixelToString(buf->getLine(rBufY)[rBufX], 12);
      }
    }
    return "BUSY";
  }