Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <mail@jlucke.com>2020-01-05 17:10:25 +0300
committerJacques Lucke <mail@jlucke.com>2020-01-05 17:10:25 +0300
commit485ff4b9bf44ce65ea19314b8371ec8659c12712 (patch)
treea2264c31320f6fa50f5e542a3f92ffa338fcae4b /source/blender/editors/interface/interface_templates.c
parent295647212db1463c26081e2f3936daf7bb944e87 (diff)
Fix T72423: Incorrect tooltips in curve profile layout
Diffstat (limited to 'source/blender/editors/interface/interface_templates.c')
-rw-r--r--source/blender/editors/interface/interface_templates.c4
1 files changed, 2 insertions, 2 deletions
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);