summaryrefslogtreecommitdiffstats
path: root/tksao/frame/basecommand.C
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/frame/basecommand.C')
-rw-r--r--tksao/frame/basecommand.C11
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;