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:
authorRune Morling <ermo.blender.org@spammesenseless.net>2021-05-18 00:27:45 +0300
committerRune Morling <ermo.blender.org@spammesenseless.net>2021-05-18 00:27:45 +0300
commit162f7c7682274617d5ac989dac25a2268a25fa08 (patch)
tree8690716279543df2e0cc5943a4f768517e50c90d /precision_drawing_tools/pdt_design.py
parent91f57b489943fa1136ad9790997c923f393c99aa (diff)
PDT: Fix the Fillet Vertices command
The Fillet Vertices command was inadvertently shadowed by the newly introduced View Normal command. The View Normal command now uses 'n' as its mnemonic.
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}"