diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-04-16 19:29:59 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-04-16 19:29:59 (GMT) |
commit | 573dfc0c0116a42965c28be25d106ca6d3131b5c (patch) | |
tree | b5b1b1e5e4d3fc8eb22258cf666b5168fc3c4885 | |
parent | c8bd08573e013b2ba8cabc5f14f05298e6ff0794 (diff) | |
parent | af1c0fc1a870ce357e3f3fea48c40d77d17ea02c (diff) | |
download | blt-573dfc0c0116a42965c28be25d106ca6d3131b5c.zip blt-573dfc0c0116a42965c28be25d106ca6d3131b5c.tar.gz blt-573dfc0c0116a42965c28be25d106ca6d3131b5c.tar.bz2 |
Merge branch 'master' into devel
-rw-r--r-- | ds9/doc/release/r8.1.html | 1 | ||||
-rw-r--r-- | ds9/library/catdialog.tcl | 1 | ||||
-rw-r--r-- | ds9/library/ds9.tcl | 4 |
3 files changed, 2 insertions, 4 deletions
diff --git a/ds9/doc/release/r8.1.html b/ds9/doc/release/r8.1.html index 8a93816..17f061e 100644 --- a/ds9/doc/release/r8.1.html +++ b/ds9/doc/release/r8.1.html @@ -71,6 +71,7 @@ <li><tt>03.28.2019 3D: add 3D mouse mode.</tt></li> <li><tt>03.28.2019 GIF: use native Tk gif.</tt></li> <li><tt>03.28.2019 PNG: use native Tk png.</tt></li> +<li><tt>04.16.2019 GUI: fix math::fuzzy issue.</tt></li> <li><tt><b>xx.xx.2019 RELEASE version 8.1b1</b></tt></li> </ol> </div> diff --git a/ds9/library/catdialog.tcl b/ds9/library/catdialog.tcl index bc4562e..2290cdf 100644 --- a/ds9/library/catdialog.tcl +++ b/ds9/library/catdialog.tcl @@ -907,7 +907,6 @@ proc CATPrint {varname} { x11 - aqua - win32 {CATPSPrint $varname} - wwin32 {win32 pm print text [::textutil::tabify::untabify2 [starbase_write_ $var(tbldb)] 12]} } } diff --git a/ds9/library/ds9.tcl b/ds9/library/ds9.tcl index 8d5878b..8aa85bf 100644 --- a/ds9/library/ds9.tcl +++ b/ds9/library/ds9.tcl @@ -226,10 +226,8 @@ package require msgcat package require http package require base64 -package require log package require ftp -package require textutil -package require math +package require math::fuzzy package require tkcon package require Tkblt |