summaryrefslogtreecommitdiffstats
path: root/ds9
diff options
context:
space:
mode:
Diffstat (limited to 'ds9')
-rw-r--r--ds9/doc/release/r8.0.html2
-rw-r--r--ds9/library/info.tcl2
2 files changed, 2 insertions, 2 deletions
diff --git a/ds9/doc/release/r8.0.html b/ds9/doc/release/r8.0.html
index 266f755..02afe42 100644
--- a/ds9/doc/release/r8.0.html
+++ b/ds9/doc/release/r8.0.html
@@ -75,9 +75,9 @@ incorrectly calculating an index into the data cube.</tt></li>
<li><tt>09.04.2018 DOC: cleaned up html documentation.</tt></li>
<li><tt><b>09.04.2018 RELEASE version 8.0rc2</b></tt></li>
<li><tt>09.19.2018 WCS: fix a memory ref with short axes symbols (aka 'b')</tt></li>
-<li><tt>09.19.2018 AST: fix a buffer overflow issue in fitschan.c.</tt></li>
<li><tt>09.19.2018 WCS: fix a problem starting in crosshair mode set in prefs and infobox update with 2D frame.</tt></li>
<li><tt>09.19.2018 PREFS: fix a problem updating from 7.6 to 8.0.</tt></li>
+<li><tt>09.21.2018 GUI: use unicode for deg symbol in infobox, previous char caused conflicts with Chinese Language.</tt></li>
<li><tt><b>10.xx.2018 RELEASE version 8.0rc3</b></tt></li>
</ol>
</div>
diff --git a/ds9/library/info.tcl b/ds9/library/info.tcl
index 1ecdaf4..fbe0431 100644
--- a/ds9/library/info.tcl
+++ b/ds9/library/info.tcl
@@ -143,7 +143,7 @@ proc CreateInfoPanel {} {
ttk::label $ds9(info).zoomValue -relief groove \
-textvariable infobox(zoom) -anchor center
- ttk::label $ds9(info).angleTitle -text {°}
+ ttk::label $ds9(info).angleTitle -text "\u00b0"
ttk::label $ds9(info).angleValue -relief groove \
-textvariable infobox(angle) -anchor center
}