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:
authorCampbell Barton <ideasman42@gmail.com>2021-09-01 14:41:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-02 04:08:38 +0300
commitf8dd0d0dba748035706382f0c5700bb23e5a9048 (patch)
tree8af00f20a77a8ff3108cc5eb729ad93f87b30421 /source/blender/editors
parent42546db49089eba5543af00ea08f8075ac98d743 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/gpencil/annotate_paint.c2
-rw-r--r--source/blender/editors/gpencil/gpencil_paint.c2
-rw-r--r--source/blender/editors/object/object_modifier.c2
-rw-r--r--source/blender/editors/screen/workspace_layout_edit.c2
-rw-r--r--source/blender/editors/space_action/space_action.c4
-rw-r--r--source/blender/editors/space_graph/space_graph.c4
6 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/gpencil/annotate_paint.c b/source/blender/editors/gpencil/annotate_paint.c
index bf47704746b..65c5b8ee573 100644
--- a/source/blender/editors/gpencil/annotate_paint.c
+++ b/source/blender/editors/gpencil/annotate_paint.c
@@ -2423,7 +2423,7 @@ static void annotation_add_missing_events(bContext *C,
static int annotation_draw_modal(bContext *C, wmOperator *op, const wmEvent *event)
{
tGPsdata *p = op->customdata;
- /* default exit state - pass through to support MMB view nav, etc. */
+ /* Default exit state - pass through to support MMB view navigation, etc. */
int estate = OPERATOR_PASS_THROUGH;
/* NOTE(mike erwin): Not quite what I was looking for, but a good start!
diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index d2dbf6ab2a6..28a22633742 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -3568,7 +3568,7 @@ static int gpencil_draw_modal(bContext *C, wmOperator *op, const wmEvent *event)
// ToolSettings *ts = CTX_data_tool_settings(C);
GP_Sculpt_Guide *guide = &p->scene->toolsettings->gp_sculpt.guide;
- /* default exit state - pass through to support MMB view nav, etc. */
+ /* Default exit state - pass through to support MMB view navigation, etc. */
int estate = OPERATOR_PASS_THROUGH;
/* NOTE(mike erwin): Not quite what I was looking for, but a good start!
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index e1e0a0600be..2a1a6696493 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -3100,7 +3100,7 @@ void OBJECT_OT_ocean_bake(wmOperatorType *ot)
/** \} */
/* ------------------------------------------------------------------- */
-/** \name Laplaciandeform Bind Operator
+/** \name Laplacian-Deform Bind Operator
* \{ */
static bool laplaciandeform_poll(bContext *C)
diff --git a/source/blender/editors/screen/workspace_layout_edit.c b/source/blender/editors/screen/workspace_layout_edit.c
index 31ca11bb847..0ec32da0404 100644
--- a/source/blender/editors/screen/workspace_layout_edit.c
+++ b/source/blender/editors/screen/workspace_layout_edit.c
@@ -140,7 +140,7 @@ bool ED_workspace_layout_delete(WorkSpace *workspace, WorkSpaceLayout *layout_ol
BLI_assert(BLI_findindex(&workspace->layouts, layout_old) != -1);
- /* don't allow deleting temp fullscreens for now */
+ /* Don't allow deleting temp full-screens for now. */
if (BKE_screen_is_fullscreen_area(screen_old)) {
return false;
}
diff --git a/source/blender/editors/space_action/space_action.c b/source/blender/editors/space_action/space_action.c
index 5e5143723a6..f59429ba981 100644
--- a/source/blender/editors/space_action/space_action.c
+++ b/source/blender/editors/space_action/space_action.c
@@ -536,9 +536,9 @@ static void action_listener(const wmSpaceTypeListenerParams *params)
saction->runtime.flag |= SACTION_RUNTIME_FLAG_NEED_CHAN_SYNC;
ED_area_tag_refresh(area);
}
- /* autocolor only really needs to change when channels are added/removed,
+ /* Auto-color only really needs to change when channels are added/removed,
* or previously hidden stuff appears
- * (assume for now that if just adding these works, that will be fine)
+ * (assume for now that if just adding these works, that will be fine).
*/
else if (((wmn->data == ND_KEYFRAME) && ELEM(wmn->action, NA_ADDED, NA_REMOVED)) ||
((wmn->data == ND_ANIMCHAN) && (wmn->action != NA_SELECTED))) {
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index 49966e880d3..720d69eaf4f 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -556,8 +556,8 @@ static void graph_listener(const wmSpaceTypeListenerParams *params)
/* context changes */
switch (wmn->category) {
case NC_ANIMATION:
- /* for selection changes of animation data, we can just redraw...
- * otherwise autocolor might need to be done again */
+ /* For selection changes of animation data, we can just redraw...
+ * otherwise auto-color might need to be done again. */
if (ELEM(wmn->data, ND_KEYFRAME, ND_ANIMCHAN) && (wmn->action == NA_SELECTED)) {
ED_area_tag_redraw(area);
}