>Hello. Nothing changes if I try to execute (AXIS, stop) or (AXIS,
>hide[show])

try removing the space after the comma.

(ref git-master, probably same for 2.3.5)
interp_convert.cc:      COMMENT("AXIS,hide");
interp_convert.cc:      COMMENT("AXIS,show");

lib/python/rs274/glcanon.py
    if arg.startswith("AXIS,"):
       parts = arg.split(",")
       command = parts[1]
       if command == "stop": raise KeyboardInterrupt
       if command == "hide": self.suppress += 1
       if command == "show": self.suppress -= 1
-- 
Dewey Garrett


------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

Reply via email to