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-17 20:41:25 +0300
committerRune Morling <ermo.blender.org@spammesenseless.net>2021-05-17 20:43:36 +0300
commit0d6c7d275aaa527173913aef4fbd9b5bda4142a5 (patch)
tree21d7a6f4e14679a86ccc22e92fdddb570d94f884
parentc8eaeecf47cf91a7e745f53295df6b2e96516031 (diff)
PDT: Avoid abbreviations in UI labels for Tangent operations
-rw-r--r--precision_drawing_tools/pdt_menus.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/precision_drawing_tools/pdt_menus.py b/precision_drawing_tools/pdt_menus.py
index d7713700..73c2d642 100644
--- a/precision_drawing_tools/pdt_menus.py
+++ b/precision_drawing_tools/pdt_menus.py
@@ -440,7 +440,7 @@ class PDT_PT_PanelTangent(Panel):
row.label(text=f"Working {PDT_LAB_PLANE}:")
row.prop(pdt_pg, "plane", text="")
row = layout.row()
- row.label(text="Tan Mode")
+ row.label(text="Tangent Mode")
row.prop(pdt_pg, "tangent_mode", text="")
row = layout.row()
row.operator("pdt.tangentoperatesel", text="Tangents from Selection", icon="NONE")
@@ -451,7 +451,7 @@ class PDT_PT_PanelTangent(Panel):
box = layout.box()
row = box.row()
split = row.split(factor=0.35, align=True)
- split.label(text="Tan Point")
+ split.label(text="Tangent Point")
split.prop(pdt_pg, "tangent_point2", text="")
row = box.row()
row.operator("pdt.tangentset3", text="from Cursor")