diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-11-07 22:09:29 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-11-07 22:09:29 (GMT) |
commit | 31e0d69941f31e61e5c242cef79e0bd916fe4ace (patch) | |
tree | 1321c597d5f796d02b6226207ecc2d72ac5b4610 /tksao/frame/basecommand.C | |
parent | d81a364b0f8e7e847dae9274ee89fe6cdcffaa0e (diff) | |
download | blt-31e0d69941f31e61e5c242cef79e0bd916fe4ace.zip blt-31e0d69941f31e61e5c242cef79e0bd916fe4ace.tar.gz blt-31e0d69941f31e61e5c242cef79e0bd916fe4ace.tar.bz2 |
add mask range
Diffstat (limited to 'tksao/frame/basecommand.C')
-rw-r--r-- | tksao/frame/basecommand.C | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/tksao/frame/basecommand.C b/tksao/frame/basecommand.C index 7e576dc..5c832ee 100644 --- a/tksao/frame/basecommand.C +++ b/tksao/frame/basecommand.C @@ -1939,12 +1939,12 @@ void Base::getMaskColorCmd() void Base::getMaskMarkCmd() { - Tcl_AppendResult(interp, "1", NULL); + Tcl_AppendResult(interp, "nonzero", NULL); } -void Base::getMaskSystemCmd() +void Base::getMaskRangeCmd() { - Tcl_AppendResult(interp, "physical", NULL); + Tcl_AppendResult(interp, "0 0", NULL); } void Base::getMaskTransparencyCmd() @@ -1952,6 +1952,11 @@ void Base::getMaskTransparencyCmd() printDouble(0); } +void Base::getMaskSystemCmd() +{ + Tcl_AppendResult(interp, "physical", NULL); +} + void Base::getMinMaxCmd() { ostringstream str; |