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:
authorHans Goudey <h.goudey@me.com>2020-11-19 00:31:15 +0300
committerHans Goudey <h.goudey@me.com>2020-11-19 00:31:26 +0300
commite9ddb21df356e1c6c21297aa463cdd6bfda8868c (patch)
treeafab40679a88f642d9bb3c42db4afaab3e1dfdf2 /source/blender/editors
parent8f30a88e63fe2c86aa004f302e6f3bd4c172ea39 (diff)
Cleanup: Grammar: "Allow to" vs gerund missed in last commit
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/armature/pose_group.c2
-rw-r--r--source/blender/editors/gpencil/gpencil_ops_versioning.c2
-rw-r--r--source/blender/editors/interface/interface_handlers.c4
-rw-r--r--source/blender/editors/space_outliner/outliner_collections.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/editors/armature/pose_group.c b/source/blender/editors/armature/pose_group.c
index ffa28bf9e36..1e5004ba341 100644
--- a/source/blender/editors/armature/pose_group.c
+++ b/source/blender/editors/armature/pose_group.c
@@ -159,7 +159,7 @@ static int pose_groups_menu_invoke(bContext *C, wmOperator *op, const wmEvent *U
pup = UI_popup_menu_begin(C, op->type->name, ICON_NONE);
layout = UI_popup_menu_layout(pup);
- /* special entry - allow to create new group, then use that
+ /* special entry - allow creating a new group, then using that
* (not to be used for removing though)
*/
if (strstr(op->idname, "assign")) {
diff --git a/source/blender/editors/gpencil/gpencil_ops_versioning.c b/source/blender/editors/gpencil/gpencil_ops_versioning.c
index 2dd98bb8df1..4721736489e 100644
--- a/source/blender/editors/gpencil/gpencil_ops_versioning.c
+++ b/source/blender/editors/gpencil/gpencil_ops_versioning.c
@@ -22,7 +22,7 @@
* \ingroup edgpencil
*/
-/* allow to use deprecated functionality */
+/* Allow using deprecated functionality. */
#define DNA_DEPRECATED_ALLOW
#include <stdio.h>
diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c
index 58bc3960f26..7dd6e400ae7 100644
--- a/source/blender/editors/interface/interface_handlers.c
+++ b/source/blender/editors/interface/interface_handlers.c
@@ -171,7 +171,7 @@ static bool ui_mouse_motion_keynav_test(struct uiKeyNavLock *keynav, const wmEve
/* pixels to move the cursor to get out of keyboard navigation */
#define BUTTON_KEYNAV_PX_LIMIT 8
-#define MENU_TOWARDS_MARGIN 20 /* margin in pixels */
+#define MENU_TOWARDS_MARGIN 20 /* margin in pixels */
#define MENU_TOWARDS_WIGGLE_ROOM 64 /* tolerance in pixels */
/* drag-lock distance threshold in pixels */
#define BUTTON_DRAGLOCK_THRESH 3
@@ -365,7 +365,7 @@ typedef struct uiHandleButtonData {
/* Button text selection:
* extension direction, selextend, inside ui_do_but_TEX */
int sel_pos_init;
- /* allow to realloc str/editstr and use 'maxlen' to track alloc size (maxlen + 1) */
+ /* Allow reallocating str/editstr and using 'maxlen' to track alloc size (maxlen + 1) */
bool is_str_dynamic;
/* number editing / dragging */
diff --git a/source/blender/editors/space_outliner/outliner_collections.c b/source/blender/editors/space_outliner/outliner_collections.c
index 670b58db0e0..e686648038d 100644
--- a/source/blender/editors/space_outliner/outliner_collections.c
+++ b/source/blender/editors/space_outliner/outliner_collections.c
@@ -346,7 +346,7 @@ void outliner_collection_delete(
/* Test in case collection got deleted as part of another one. */
if (BLI_findindex(&bmain->collections, collection) != -1) {
- /* We cannot allow to delete collections that are indirectly linked,
+ /* We cannot allow deleting collections that are indirectly linked,
* or that are used by (linked to...) other linked scene/collection. */
bool skip = false;
if (ID_IS_LINKED(collection)) {