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:
authorAaron Carlisle <carlisle.b3d@gmail.com>2022-04-19 03:17:41 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-04-19 03:17:41 +0300
commitadcce654e38307b180ebdfa3699a80018ac95f63 (patch)
tree67ae5a9673e33290da6a4c17f4e2d8d23532b5a7 /source/blender/editors
parent549f68149d8d5a90067d3488ebffb522ff6c3d8c (diff)
Cleanup: Use correct capitalization of "F-Curve"
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/animation/anim_channels_defines.c2
-rw-r--r--source/blender/editors/space_sequencer/sequencer_draw.c2
-rw-r--r--source/blender/editors/transform/transform_convert_action.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c
index eb7f8e8ad83..9722de0ce3c 100644
--- a/source/blender/editors/animation/anim_channels_defines.c
+++ b/source/blender/editors/animation/anim_channels_defines.c
@@ -5187,7 +5187,7 @@ void ANIM_channel_draw_widgets(const bContext *C,
}
/* Visibility toggle. */
if (acf->has_setting(ac, ale, ACHANNEL_SETTING_VISIBLE)) {
- /* For F-curves, add the extra space for the color bands. */
+ /* For F-Curves, add the extra space for the color bands. */
if (ELEM(ale->type, ANIMTYPE_FCURVE, ANIMTYPE_NLACURVE)) {
offset += GRAPH_ICON_VISIBILITY_OFFSET;
}
diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index 31e885d16f2..1c1694479d3 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -383,7 +383,7 @@ static void draw_seq_waveform_overlay(View2D *v2d,
return;
}
- /* F-curve lookup is quite expensive, so do this after precondition. */
+ /* F-Curve lookup is quite expensive, so do this after precondition. */
FCurve *fcu = id_data_find_fcurve(&scene->id, seq, &RNA_Sequence, "volume", 0, NULL);
WaveVizData *tri_strip_arr = MEM_callocN(sizeof(*tri_strip_arr) * pix_strip_len * 2,
diff --git a/source/blender/editors/transform/transform_convert_action.c b/source/blender/editors/transform/transform_convert_action.c
index ac1e961e361..71c245cd512 100644
--- a/source/blender/editors/transform/transform_convert_action.c
+++ b/source/blender/editors/transform/transform_convert_action.c
@@ -337,7 +337,7 @@ void createTransActionData(bContext *C, TransInfo *t)
t->frame_side = 'B';
}
- /* loop 1: fully select F-curve keys and count how many BezTriples are selected */
+ /* loop 1: fully select F-Curve keys and count how many BezTriples are selected */
for (ale = anim_data.first; ale; ale = ale->next) {
AnimData *adt = ANIM_nla_mapping_get(&ac, ale);
int adt_count = 0;