From 9d09eda0a31027c83430718e5caed3797da51b51 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 16 Feb 2019 16:13:12 +1100 Subject: DNA: rename theme space types Follow enum naming convention, use "space_" prefix instead of "t". --- source/blender/editors/animation/anim_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/animation/anim_filter.c') diff --git a/source/blender/editors/animation/anim_filter.c b/source/blender/editors/animation/anim_filter.c index ca9205cdd47..06f19b8e6ba 100644 --- a/source/blender/editors/animation/anim_filter.c +++ b/source/blender/editors/animation/anim_filter.c @@ -111,7 +111,7 @@ static void animedit_get_yscale_factor(bAnimContext *ac) * NOTE: This theme setting doesn't have an ID, as it cannot be accessed normally * since it is a float, and the theme settings methods can only handle chars. */ - ac->yscale_fac = btheme->tact.keyframe_scale_fac; + ac->yscale_fac = btheme->space_action.keyframe_scale_fac; /* clamp to avoid problems with uninitialised values... */ if (ac->yscale_fac < 0.1f) -- cgit v1.2.3