summaryrefslogtreecommitdiffstats
path: root/ds9/library/plotprocess.tcl
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-05-31 18:55:16 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-05-31 18:55:16 (GMT)
commit4635ea4e5fca15ce620c46ff0bda44d9393fe596 (patch)
treeee71fa332409867d14d87ad1313982eb46014737 /ds9/library/plotprocess.tcl
parent26eb60d30ba6391cc9dee34d5d01472d42566ad2 (diff)
downloadblt-4635ea4e5fca15ce620c46ff0bda44d9393fe596.zip
blt-4635ea4e5fca15ce620c46ff0bda44d9393fe596.tar.gz
blt-4635ea4e5fca15ce620c46ff0bda44d9393fe596.tar.bz2
add multiple plot support
Diffstat (limited to 'ds9/library/plotprocess.tcl')
-rw-r--r--ds9/library/plotprocess.tcl12
1 files changed, 6 insertions, 6 deletions
diff --git a/ds9/library/plotprocess.tcl b/ds9/library/plotprocess.tcl
index 69c6633..d0ec4dd 100644
--- a/ds9/library/plotprocess.tcl
+++ b/ds9/library/plotprocess.tcl
@@ -30,18 +30,18 @@ proc PrefsDialogPlot {} {
set f [ttk::labelframe $w.plot.axis -text [msgcat::mc {Axis}]]
ttk::label $f.xtitle -text [msgcat::mc {X}]
- ttk::checkbutton $f.x -text [msgcat::mc {Grid}] -variable pap(axis,x,grid)
+ ttk::checkbutton $f.x -text [msgcat::mc {Grid}] -variable pap(graph,axis,x,grid)
ttk::radiobutton $f.xlinear -text [msgcat::mc {Linear}] \
- -variable pap(axis,x,log) -value 0
+ -variable pap(graph,axis,x,log) -value 0
ttk::radiobutton $f.xlog -text [msgcat::mc {Log}] \
- -variable pap(axis,x,log) -value 1
+ -variable pap(graph,axis,x,log) -value 1
ttk::label $f.ytitle -text [msgcat::mc {Y}]
- ttk::checkbutton $f.y -text [msgcat::mc {Grid}] -variable pap(axis,y,grid)
+ ttk::checkbutton $f.y -text [msgcat::mc {Grid}] -variable pap(graph,axis,y,grid)
ttk::radiobutton $f.ylinear -text [msgcat::mc {Linear}] \
- -variable pap(axis,y,log) -value 0
+ -variable pap(graph,axis,y,log) -value 0
ttk::radiobutton $f.ylog -text [msgcat::mc {Log}] \
- -variable pap(axis,y,log) -value 1
+ -variable pap(graph,axis,y,log) -value 1
ttk::label $f.ttextlab -text [msgcat::mc {Axis Title}]
FontMenuButton $f.textlab pap axis,title,family axis,title,size axis,title,weight axis,title,slant {}