summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNinad Sathaye <ninad@nanorex.com>2008-09-09 21:26:50 +0000
committerNinad Sathaye <ninad@nanorex.com>2008-09-09 21:26:50 +0000
commita44e3850f83f712624d69306df9793a6560262a5 (patch)
treeb568591d534b7a397b078ebb2e65fa43ab07912d
parent8bc2b9aff43fd64eaaa430d23689543d1327ddd2 (diff)
downloadnanoengineer-a44e3850f83f712624d69306df9793a6560262a5.tar.gz
nanoengineer-a44e3850f83f712624d69306df9793a6560262a5.zip
fixed bug in last commit when USE_COMMAND_STACK is false
-rwxr-xr-xcad/src/commands/SelectAtoms/SelectAtoms_Command.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cad/src/commands/SelectAtoms/SelectAtoms_Command.py b/cad/src/commands/SelectAtoms/SelectAtoms_Command.py
index 174b1afb5..ec20965ba 100755
--- a/cad/src/commands/SelectAtoms/SelectAtoms_Command.py
+++ b/cad/src/commands/SelectAtoms/SelectAtoms_Command.py
@@ -36,6 +36,7 @@ from commands.Select.Select_Command import Select_Command
from command_support.GraphicsMode_API import GraphicsMode_API
from commands.SelectAtoms.SelectAtoms_GraphicsMode import SelectAtoms_GraphicsMode
+_superclass = Select_Command
class SelectAtoms_Command(Select_Command):
"""
SelectAtoms_basicCommand
@@ -63,7 +64,7 @@ class SelectAtoms_Command(Select_Command):
highlight_singlets = False
def Enter(self):
- Select_basicCommand.Enter(self)
+ _superclass.Enter(self)
self.w.win_update()
#k needed? I doubt it, I bet caller of Enter does it