From 9128155de32592d84b08426a54ae1e56f02d4635 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Thu, 2 Jul 2020 16:10:43 -0400 Subject: 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. --- precision_drawing_tools/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'precision_drawing_tools') 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") -- cgit v1.2.3