From 5cbf58ce8b5463a0c3296a753c26615c357aca17 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Tue, 1 Dec 2015 23:56:48 +0100 Subject: Fix T46909: Text strip not themeable Normally we don't allow adding new theme options if we can avoid it, but this is a legit exception since all other strips are themeable. Default color for text strip is now yellow-ish. Not nice but there are also not many other colors left. --- source/blender/blenloader/intern/versioning_270.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenloader/intern/versioning_270.c') diff --git a/source/blender/blenloader/intern/versioning_270.c b/source/blender/blenloader/intern/versioning_270.c index b5199e123c6..a0248d5a97c 100644 --- a/source/blender/blenloader/intern/versioning_270.c +++ b/source/blender/blenloader/intern/versioning_270.c @@ -920,7 +920,7 @@ void blo_do_versions_270(FileData *fd, Library *UNUSED(lib), Main *main) } - { + if (!MAIN_VERSION_ATLEAST(main, 276, 3)) { if (!DNA_struct_elem_find(fd->filesdna, "RenderData", "CurveMapping", "mblur_shutter_curve")) { Scene *scene; for (scene = main->scene.first; scene != NULL; scene = scene->id.next) { -- cgit v1.2.3