diff options
author | Bruce Smith <bruce@nanorex.com> | 2008-10-02 16:52:54 +0000 |
---|---|---|
committer | Bruce Smith <bruce@nanorex.com> | 2008-10-02 16:52:54 +0000 |
commit | 12d82bcc73c96b1b4cb1d8079a845edc42aa7749 (patch) | |
tree | 514023ff2ba9ffe99987a32292c9f2367121ad98 | |
parent | bdffda54f59f7d9f2620a01720ddba1bfb65d9dc (diff) | |
download | nanoengineer-12d82bcc73c96b1b4cb1d8079a845edc42aa7749.tar.gz nanoengineer-12d82bcc73c96b1b4cb1d8079a845edc42aa7749.zip |
fix typos
-rwxr-xr-x | cad/src/commands/Move/MovePropertyManager.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cad/src/commands/Move/MovePropertyManager.py b/cad/src/commands/Move/MovePropertyManager.py index 58c187fb6..7e84d09fd 100755 --- a/cad/src/commands/Move/MovePropertyManager.py +++ b/cad/src/commands/Move/MovePropertyManager.py @@ -310,7 +310,7 @@ class MovePropertyManager(Ui_MovePropertyManager): groupbox Example: If user clicks on Move groupbox button, it will toggle the display of the groupbox, connect its actions and Hide the other groupbox - i.e. Rotate Compomnents groupbox and also disconnect actions inside it. + i.e. Rotate Components groupbox and also disconnect actions inside it. """ self.translateGroupBox.toggleExpandCollapse() @@ -323,7 +323,7 @@ class MovePropertyManager(Ui_MovePropertyManager): groupbox. Example: If user clicks on Move groupbox button, it will toggle the display of the groupbox, connect its actions and Hide the other groupbox - i.e. Rotate Compomnents groupbox and also disconnect actions inside it + i.e. Rotate Components groupbox and also disconnect actions inside it """ self.rotateGroupBox.toggleExpandCollapse() @@ -333,7 +333,7 @@ class MovePropertyManager(Ui_MovePropertyManager): """" Sets the 'last checked button value' Program remembers the last checked button in a groupbox (either Translate or rotate (components)) . - When that groupbox is displayed, it checkes this last button again + When that groupbox is displayed, it checks this last button again (see get method) """ self.lastCheckedRotateButton = lastCheckedButton @@ -341,7 +341,7 @@ class MovePropertyManager(Ui_MovePropertyManager): def setLastCheckedMoveButton(self, lastCheckedButton): """" Sets the 'last checked button value' Program remembers the last checked button in a groupbox (either Translate components or rotate - components) . When that groupbox is displayed, it checkes this last + components) . When that groupbox is displayed, it checks this last button again (see get method) """ self.lastCheckedTranslateButton = lastCheckedButton |