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:
authorJulian Eisel <eiseljulian@gmail.com>2020-01-16 19:31:09 +0300
committerJulian Eisel <eiseljulian@gmail.com>2020-01-16 19:31:09 +0300
commit2cd3298fde496b1632dac5cb7e9ff21d22e9bad3 (patch)
tree19d05a0f14b3dd88fd62a2c2da30b9cdb513bc47 /source/blender/blenloader
parent3cd1c8ccffec516c6ecb6c048dc3aba07d3ad6e5 (diff)
Minor correction to previous commit
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_280.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index e746bbf1800..0754e59cb8a 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -2848,7 +2848,7 @@ void blo_do_versions_280(FileData *fd, Library *UNUSED(lib), Main *bmain)
* fine to always insert headers first. */
BLI_assert(!do_versions_find_region_or_null(regionbase, RGN_TYPE_TOOL_HEADER));
- ARegion *ar = do_versions_add_region(RGN_TYPE_HEADER, "footer for text");
+ ARegion *ar = do_versions_add_region(RGN_TYPE_HEADER, "header 2.83.1 versioning");
ar->alignment = (U.uiflag & USER_HEADER_BOTTOM) ? RGN_ALIGN_BOTTOM : RGN_ALIGN_TOP;
BLI_addhead(regionbase, ar);
}