summaryrefslogtreecommitdiff
path: root/cad/src/dna/commands/DnaDisplayStyle
diff options
context:
space:
mode:
authorNinad Sathaye <ninad@nanorex.com>2008-07-09 17:06:54 +0000
committerNinad Sathaye <ninad@nanorex.com>2008-07-09 17:06:54 +0000
commit996220d445b48a6e4e7dabe34eef072644c9753d (patch)
treea2de590c3a064f832f448ec3b232fafb6d998572 /cad/src/dna/commands/DnaDisplayStyle
parentdcf855fd3c171199af45947f023988f76eed7c7d (diff)
downloadnanoengineer-996220d445b48a6e4e7dabe34eef072644c9753d.tar.gz
nanoengineer-996220d445b48a6e4e7dabe34eef072644c9753d.zip
implemented 'Escape key to exit' for all commands.(exception: not done yet for Extrude, Movie modes that use basicGraphicsmode as their superclass )
Diffstat (limited to 'cad/src/dna/commands/DnaDisplayStyle')
-rw-r--r--cad/src/dna/commands/DnaDisplayStyle/DnaDisplayStyle_Command.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/cad/src/dna/commands/DnaDisplayStyle/DnaDisplayStyle_Command.py b/cad/src/dna/commands/DnaDisplayStyle/DnaDisplayStyle_Command.py
index 68c874a0c..797f21df4 100644
--- a/cad/src/dna/commands/DnaDisplayStyle/DnaDisplayStyle_Command.py
+++ b/cad/src/dna/commands/DnaDisplayStyle/DnaDisplayStyle_Command.py
@@ -10,17 +10,16 @@ from commands.SelectChunks.SelectChunks_GraphicsMode import SelectChunks_Graphic
from command_support.EditCommand import EditCommand
from utilities.constants import red
from dna.commands.DnaDisplayStyle.DnaDisplayStyle_PropertyManager import DnaDisplayStyle_PropertyManager
-from temporary_commands.TemporaryCommand import ESC_to_exit_GraphicsMode_preMixin
# == GraphicsMode part
_superclass_for_GM = SelectChunks_GraphicsMode
-class DnaDisplayStyle_GraphicsMode( ESC_to_exit_GraphicsMode_preMixin,
- SelectChunks_GraphicsMode ):
+class DnaDisplayStyle_GraphicsMode( SelectChunks_GraphicsMode ):
"""
Graphics mode for (DNA) Display Style command.
"""
+ pass
# == Command part