diff options
Diffstat (limited to 'ds9/library/mbin.tcl')
-rw-r--r-- | ds9/library/mbin.tcl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ds9/library/mbin.tcl b/ds9/library/mbin.tcl index 9ada431..a0c8afd 100644 --- a/ds9/library/mbin.tcl +++ b/ds9/library/mbin.tcl @@ -323,11 +323,14 @@ proc UpdateBinMenu {} { if {[$current(frame) has fits]} { if {[$current(frame) has fits bin]} { $ds9(mb) entryconfig [msgcat::mc {Bin}] -state normal + ConfigureButtons bin normal } else { $ds9(mb) entryconfig [msgcat::mc {Bin}] -state disabled + ConfigureButtons bin disabled } } else { $ds9(mb) entryconfig [msgcat::mc {Bin}] -state normal + ConfigureButtons bin normal } set bin(function) [$current(frame) get bin function] @@ -336,6 +339,7 @@ proc UpdateBinMenu {} { set bin(buffersize) [$current(frame) get bin buffer size] } else { $ds9(mb) entryconfig [msgcat::mc {Bin}] -state disabled + ConfigureButtons bin disabled } } |