[Bf-blender-cvs] [485ff4b9bf4] master: Fix T72423: Incorrect tooltips in curve profile layout

Jacques Lucke noreply at git.blender.org
Sun Jan 5 15:10:35 CET 2020


Commit: 485ff4b9bf44ce65ea19314b8371ec8659c12712
Author: Jacques Lucke
Date:   Sun Jan 5 15:10:25 2020 +0100
Branches: master
https://developer.blender.org/rB485ff4b9bf44ce65ea19314b8371ec8659c12712

Fix T72423: Incorrect tooltips in curve profile layout

===================================================================

M	source/blender/editors/interface/interface_templates.c

===================================================================

diff --git a/source/blender/editors/interface/interface_templates.c b/source/blender/editors/interface/interface_templates.c
index 71fa28640e0..0880da91005 100644
--- a/source/blender/editors/interface/interface_templates.c
+++ b/source/blender/editors/interface/interface_templates.c
@@ -5013,7 +5013,7 @@ static void CurveProfile_buttons_layout(uiLayout *layout, PointerRNA *ptr, RNAUp
                       0.0,
                       0.0,
                       0.0,
-                      TIP_("Set the point's handle type to sharp."));
+                      TIP_("Set the point's handle type to sharp"));
     if (point_last_or_first) {
       UI_but_flag_enable(bt, UI_BUT_DISABLED);
     }
@@ -5031,7 +5031,7 @@ static void CurveProfile_buttons_layout(uiLayout *layout, PointerRNA *ptr, RNAUp
                       0.0,
                       0.0,
                       0.0,
-                      TIP_("Set the point's handle type to sharp."));
+                      TIP_("Set the point's handle type to smooth"));
     UI_but_funcN_set(bt, CurveProfile_buttons_setcurved, MEM_dupallocN(cb), profile);
     if (point_last_or_first) {
       UI_but_flag_enable(bt, UI_BUT_DISABLED);



More information about the Bf-blender-cvs mailing list