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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-07-02 23:10:43 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-07-02 23:10:58 +0300
commit9128155de32592d84b08426a54ae1e56f02d4635 (patch)
tree83c5e3b50b75dbef39093fe7463a12ee93ac4656 /precision_drawing_tools
parent7e8663fcbcadbf0095a046d931ead6a817528508 (diff)
UI: Dont abbriviate location & rotation
This resolves one of the last few areas where we still use inappropriate abbreviations. Reading abbreviated words is usually slower, because users must parse, guess and translate the words. Using abbreviations such as 'rot' is also especially bad since it's a word in itself too. The main advantage of abbreviations is that they are faster to *write*, which just isn't a concern for text in the UI.
Diffstat (limited to 'precision_drawing_tools')
-rw-r--r--precision_drawing_tools/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/precision_drawing_tools/__init__.py b/precision_drawing_tools/__init__.py
index 62de72b6..19b2b810 100644
--- a/precision_drawing_tools/__init__.py
+++ b/precision_drawing_tools/__init__.py
@@ -501,7 +501,7 @@ class PDTSceneProperties(PropertyGroup):
description="Number of Vertices per Cycle (180 Degrees)")
trig_tanmax : FloatProperty(name="Tangent Max", default=10, min=0.1,
description="Maximum Permitted Tangent Value")
- trig_off : FloatVectorProperty(name="Start Loc", default=(0,0,0),
+ trig_off : FloatVectorProperty(name="Start Location", default=(0,0,0),
description="Location in World Space for Origin of Wave")
trig_abs : BoolProperty(name="Absolute", default=False,
description="Use Absolute Values Only")