diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2019-07-21 18:28:34 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2019-07-21 18:28:34 (GMT) |
commit | 96a2c0f616ead43a6c2c31338804fa2c2131cb7f (patch) | |
tree | 47a6165f1f37a488158680f8fa4665a38d4bad1d /ds9/library/plotprocess.tcl | |
parent | 09cac055005e62037e2170e83b6c0d217330bff2 (diff) | |
download | blt-96a2c0f616ead43a6c2c31338804fa2c2131cb7f.zip blt-96a2c0f616ead43a6c2c31338804fa2c2131cb7f.tar.gz blt-96a2c0f616ead43a6c2c31338804fa2c2131cb7f.tar.bz2 |
support multiple graphs per plot
Diffstat (limited to 'ds9/library/plotprocess.tcl')
-rw-r--r-- | ds9/library/plotprocess.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ds9/library/plotprocess.tcl b/ds9/library/plotprocess.tcl index 4cb4e87..4368818 100644 --- a/ds9/library/plotprocess.tcl +++ b/ds9/library/plotprocess.tcl @@ -273,7 +273,7 @@ proc PlotCmdUpdateCanvas {which value} { upvar #0 $cvarname cvar set cvar($which) $value - $cvar(proc,updatecanvas) $cvarname + PlotUpdateCanvas $cvarname } proc PlotCmdUpdateGraph {which value} { @@ -310,7 +310,7 @@ proc PlotCmdFontStyle {which value} { set cvar($which,slant) italic } } - $cvar(proc,updatecanvas) $cvarname + PlotUpdateCanvas $cvarname } proc PlotCmdExport {format fn} { |