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:
authorHarley Acheson <harley.acheson@gmail.com>2020-10-19 18:12:33 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-19 18:12:33 +0300
commit3a7fd309fce89213b0224b3c6807adb2d1fe7ca8 (patch)
tree20e6064201939368650509d758c7187df74416a6 /source/blender/windowmanager/intern/wm_toolsystem.c
parentd2bf71b412233160a52775f29799a2c1331c92f4 (diff)
Spelling: It's Versus Its
Corrects incorrect usage of contraction for 'it is', when possessive 'its' was required. Differential Revision: https://developer.blender.org/D9250 Reviewed by Campbell Barton
Diffstat (limited to 'source/blender/windowmanager/intern/wm_toolsystem.c')
-rw-r--r--source/blender/windowmanager/intern/wm_toolsystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_toolsystem.c b/source/blender/windowmanager/intern/wm_toolsystem.c
index 570d60f6c60..5327062d9bb 100644
--- a/source/blender/windowmanager/intern/wm_toolsystem.c
+++ b/source/blender/windowmanager/intern/wm_toolsystem.c
@@ -521,7 +521,7 @@ void WM_toolsystem_refresh_active(bContext *C)
/* Could skip loop for modes that don't depend on space type. */
int space_type_mask_handled = 0;
LISTBASE_FOREACH (ScrArea *, area, &screen->areabase) {
- /* Don't change the space type of the active tool, only update it's mode. */
+ /* Don't change the space type of the active tool, only update its mode. */
const int space_type_mask = (1 << area->spacetype);
if ((space_type_mask & WM_TOOLSYSTEM_SPACE_MASK) &&
((space_type_mask_handled & space_type_mask) == 0)) {