diff options
author | Bruce Smith <bruce@nanorex.com> | 2009-02-28 01:18:08 +0000 |
---|---|---|
committer | Bruce Smith <bruce@nanorex.com> | 2009-02-28 01:18:08 +0000 |
commit | 707ebe1abf46846b5ca771dbba464a54a5e56bbd (patch) | |
tree | eaa9018c16a771644fc3b65c17952a1f395b326c /cad/src/commands/Extrude | |
parent | 6032d5def9b8235d2ea0de4e5bf0ecf8962cdcd4 (diff) | |
download | nanoengineer-707ebe1abf46846b5ca771dbba464a54a5e56bbd.tar.gz nanoengineer-707ebe1abf46846b5ca771dbba464a54a5e56bbd.zip |
clean up Draw_after_highlighting; pass drawing_phase in those jig select methods that shouldn't exist
Diffstat (limited to 'cad/src/commands/Extrude')
-rwxr-xr-x | cad/src/commands/Extrude/extrudeMode.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cad/src/commands/Extrude/extrudeMode.py b/cad/src/commands/Extrude/extrudeMode.py index a2e0f005f..745ac9b8f 100755 --- a/cad/src/commands/Extrude/extrudeMode.py +++ b/cad/src/commands/Extrude/extrudeMode.py @@ -1742,13 +1742,13 @@ class extrudeMode(basicMode): return # from Draw ## Added this method to fix bug 1043 [Huaicai 10/04/05] - def Draw_after_highlighting(self): + def Draw_after_highlighting(self, pickCheckOnly = False): """ Only draw those translucent parts of the whole model when we are requested to draw the whole model """ if self.show_entire_model: - basicMode.Draw_after_highlighting(self) + return basicMode.Draw_after_highlighting(self, pickCheckOnly) return call_makeMenus_for_each_event = True #bruce 050914 enable dynamic context menus [fixes bug 971] |