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>2019-11-21 15:11:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-21 15:15:11 +0300
commit1fbb86654a82df7bbce0566b8b335f8631116d65 (patch)
treea33112dce9529708a8183a1145330d7c06303e1f /source/blender/makesdna/DNA_space_types.h
parent7c18fcbe03271f15ed4f6f4af14c60e84f8bb9cc (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/makesdna/DNA_space_types.h')
-rw-r--r--source/blender/makesdna/DNA_space_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 82f6da8bb46..8670d8f6633 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -83,13 +83,13 @@ typedef struct SpaceLink {
enum {
/**
* The space is not a regular one opened through the editor menu (for example) but spawned by an
- * operator to fulfill some task and then disappear again. Can typically be cancelled using Esc,
- * but that is handled on the editor level. */
+ * operator to fulfill some task and then disappear again.
+ * Can typically be cancelled using Escape, but that is handled on the editor level. */
SPACE_FLAG_TYPE_TEMPORARY = (1 << 0),
/**
- * Used to mark a space as active but "overlapped" by temporary fullscreen spaces. Without this
- * we wouldn't be able to restore the correct active space after closing temp fullscreens
- * reliably if the same space type is opened twice in a fullscreen stack (see T19296). We don't
+ * Used to mark a space as active but "overlapped" by temporary full-screen spaces. Without this
+ * we wouldn't be able to restore the correct active space after closing temp full-screens
+ * reliably if the same space type is opened twice in a full-screen stack (see T19296). We don't
* actually open the same space twice, we have to pretend it is by managing area order carefully.
*/
SPACE_FLAG_TYPE_WAS_ACTIVE = (1 << 1),