summaryrefslogtreecommitdiff
path: root/cad/src/temporary_commands
diff options
context:
space:
mode:
authorNinad Sathaye <ninad@nanorex.com>2008-09-30 17:30:40 +0000
committerNinad Sathaye <ninad@nanorex.com>2008-09-30 17:30:40 +0000
commitb0928e00d47d9932e84458f01d481d5009357ec6 (patch)
tree8829e4864c60b1faba5cf7ac4365991e20adf1d6 /cad/src/temporary_commands
parentbcb7d5a55152894671098c7ad41ec5dbb9033a3f (diff)
downloadnanoengineer-b0928e00d47d9932e84458f01d481d5009357ec6.tar.gz
nanoengineer-b0928e00d47d9932e84458f01d481d5009357ec6.zip
removed command_can_be_suspended command class flag
Diffstat (limited to 'cad/src/temporary_commands')
-rw-r--r--cad/src/temporary_commands/LineMode/Line_Command.py1
-rw-r--r--cad/src/temporary_commands/TemporaryCommand.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/cad/src/temporary_commands/LineMode/Line_Command.py b/cad/src/temporary_commands/LineMode/Line_Command.py
index 0764486b5..3505efadf 100644
--- a/cad/src/temporary_commands/LineMode/Line_Command.py
+++ b/cad/src/temporary_commands/LineMode/Line_Command.py
@@ -55,7 +55,6 @@ class Line_Command(Select_Command):
# len(mouseClickPoints)
mouseClickPoints = ()
- command_can_be_suspended = False
command_should_resume_prevMode = True
command_has_its_own_PM = False
diff --git a/cad/src/temporary_commands/TemporaryCommand.py b/cad/src/temporary_commands/TemporaryCommand.py
index bd40b3cf3..5acc67298 100644
--- a/cad/src/temporary_commands/TemporaryCommand.py
+++ b/cad/src/temporary_commands/TemporaryCommand.py
@@ -22,7 +22,6 @@ class TemporaryCommand_preMixin(commonCommand):
A pre-Mixin class for Command subclasses
which want to act as temporary commands.
"""
- command_can_be_suspended = False #bruce 071011
command_should_resume_prevMode = True #bruce 071011, to be revised (replaces need for customized Done method)
#See Command.anyCommand for detailed explanation of the following flag
command_has_its_own_PM = False