Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'precision_drawing_tools/pdt_design.py')
-rw-r--r--precision_drawing_tools/pdt_design.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/precision_drawing_tools/pdt_design.py b/precision_drawing_tools/pdt_design.py
index f1505353..ac983579 100644
--- a/precision_drawing_tools/pdt_design.py
+++ b/precision_drawing_tools/pdt_design.py
@@ -337,37 +337,37 @@ class PDT_OT_PlacementView(Operator):
if operation == "CU":
# Cursor
pg.command = (
- f"cv{str(round(pg.distance, decimal_places))}"
+ f"cn{str(round(pg.distance, decimal_places))}"
)
elif operation == "PP":
# Pivot Point
pg.command = (
- f"pv{str(round(pg.distance, decimal_places))}"
+ f"pn{str(round(pg.distance, decimal_places))}"
)
elif operation == "MV":
# Move Entities
pg.command = (
- f"gv{str(round(pg.distance, decimal_places))}"
+ f"gn{str(round(pg.distance, decimal_places))}"
)
elif operation == "NV":
# New Vertex
pg.command = (
- f"nv{str(round(pg.distance, decimal_places))}"
+ f"nn{str(round(pg.distance, decimal_places))}"
)
elif operation == "EV":
# Extrue Vertices
pg.command = (
- f"vv{str(round(pg.distance, decimal_places))}"
+ f"vn{str(round(pg.distance, decimal_places))}"
)
elif operation == "DG":
# Duplicate Entities
pg.command = (
- f"dv{str(round(pg.distance, decimal_places))}"
+ f"dn{str(round(pg.distance, decimal_places))}"
)
elif operation == "EG":
# Extrue Geometry
pg.command = (
- f"ev{str(round(pg.distance, decimal_places))}"
+ f"en{str(round(pg.distance, decimal_places))}"
)
else:
error_message = f"{operation} {PDT_ERR_NON_VALID} {PDT_LAB_DEL}"