From 33b8f1d638eb4c29e0e0f11aabb36e64931bc679 Mon Sep 17 00:00:00 2001 From: William Joye Date: Wed, 14 Feb 2018 12:20:29 -0500 Subject: fixed a problem when creating a new frame with smoothing enabled --- ds9/doc/release/r7.6.html | 1 + ds9/library/frame.tcl | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ds9/doc/release/r7.6.html b/ds9/doc/release/r7.6.html index 81dda40..374ce3e 100644 --- a/ds9/doc/release/r7.6.html +++ b/ds9/doc/release/r7.6.html @@ -168,6 +168,7 @@
  • 02.12.2018 FITSY++: fixed an issue with the logic of locating keywords in current hdu and then the primary hdu.
  • 02.13.2018 GUI: fixed an issue with the panner not updating properly on initial load.
  • 02.13.2018 GUI: fixed an issue with current zoom and block factor and menu selection.
  • +
  • 02.14.2018 SMOOTH: fixed a problem when creating a new frame with smoothing enabled. Bug introduced in version 7.6b4.
  • 04.15.2018 RELEASE version 7.6
  • diff --git a/ds9/library/frame.tcl b/ds9/library/frame.tcl index c2b387307..27fc888 100644 --- a/ds9/library/frame.tcl +++ b/ds9/library/frame.tcl @@ -195,7 +195,10 @@ proc CreateNameNumberFrame {which type} { $ds9(next) cube axes $cube(axes) if {$smooth(view)} { - $ds9(next) smooth $smooth(function) $smooth(kernel) $smooth(radius) + $ds9(next) smooth $smooth(function) \ + $smooth(radius) $smooth(radius,minor) \ + $smooth(sigma) $smooth(sigma,minor) \ + $smooth(angle) } } rgb { @@ -224,7 +227,10 @@ proc CreateNameNumberFrame {which type} { $ds9(next) cube axes $cube(axes) if {$smooth(view)} { - $ds9(next) smooth $smooth(function) $smooth(kernel) $smooth(radius) + $ds9(next) smooth $smooth(function) \ + $smooth(radius) $smooth(radius,minor) \ + $smooth(sigma) $smooth(sigma,minor) \ + $smooth(angle) } } $ds9(next) rgb channel red -- cgit v0.12