diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-05-26 18:38:04 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-05-26 18:38:04 (GMT) |
commit | 151e8b38fa25484445525fce072618e82fa5e70c (patch) | |
tree | c5aea0eb70f5b52bed88db5952dfe741a8dbe20b | |
parent | 415ee88b577a39033e4679b125e6ff6665efc5ae (diff) | |
download | blt-151e8b38fa25484445525fce072618e82fa5e70c.zip blt-151e8b38fa25484445525fce072618e82fa5e70c.tar.gz blt-151e8b38fa25484445525fce072618e82fa5e70c.tar.bz2 |
fixed load/paste contours
-rw-r--r-- | ds9/doc/release/r7.6.html | 2 | ||||
-rw-r--r-- | tksao/frame/context.C | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/ds9/doc/release/r7.6.html b/ds9/doc/release/r7.6.html index 9f2e183..765cad4 100644 --- a/ds9/doc/release/r7.6.html +++ b/ds9/doc/release/r7.6.html @@ -93,6 +93,8 @@ <li><tt>05.04.2017 REGION: fixed problem with dashed Pandas X11 render.</tt></li> <li><tt><b>05.15.2017 RELEASE version 7.6b1</b></tt></li> + <li><tt>05.26.2017 CONTOURS: Fixed a problem with load/paste contours.</tt></li> + <li><tt><b>xx.xx.2017 RELEASE version 7.6b2</b></tt></li> </ol> </ol> </body> diff --git a/tksao/frame/context.C b/tksao/frame/context.C index 08c3568..94a81f2 100644 --- a/tksao/frame/context.C +++ b/tksao/frame/context.C @@ -429,6 +429,7 @@ void Context::clearHist() void Context::contourAppendAux(ContourLevel* ct) { auxcontours_.append(ct); + hasAuxContour_ =1; } void Context::contourCreateFV(const char* color, int width, int dash, @@ -597,6 +598,7 @@ void Context::contourLoadAux(istream& str, } auxcontours_.append(cl); + hasAuxContour_ =1; } void Context::contourPS(Widget::PSColorSpace cs) |