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-10-03 05:40:19 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-04 01:28:33 +0300
commit57272d598d2c64932b3ae26991063fce9fe52a90 (patch)
tree1a64ea1d4591824ce937731db579e00f0c2b47d8 /source/blender/editors/screen/screen_ops.c
parentee79bde54dfbaf9914224a32dae090c326b5998b (diff)
Cleanup: rename eRegionType -> eRegion_Type
Match eSpace_Type.
Diffstat (limited to 'source/blender/editors/screen/screen_ops.c')
-rw-r--r--source/blender/editors/screen/screen_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index 674a2deb929..3a0192aef54 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -4410,7 +4410,7 @@ static void SCREEN_OT_region_context_menu(wmOperatorType *ot)
* Animation Step.
* \{ */
static bool screen_animation_region_supports_time_follow(eSpace_Type spacetype,
- eRegionType regiontype)
+ eRegion_Type regiontype)
{
return (regiontype == RGN_TYPE_WINDOW &&
ELEM(spacetype, SPACE_SEQ, SPACE_GRAPH, SPACE_ACTION, SPACE_NLA)) ||
@@ -4418,7 +4418,7 @@ static bool screen_animation_region_supports_time_follow(eSpace_Type spacetype,
}
static bool match_region_with_redraws(const ScrArea *area,
- eRegionType regiontype,
+ eRegion_Type regiontype,
eScreen_Redraws_Flag redraws,
bool from_anim_edit)
{