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:
authorAntonioya <blendergit@gmail.com>2018-09-20 14:04:56 +0300
committerAntonioya <blendergit@gmail.com>2018-09-20 14:04:56 +0300
commitb9b371625d4e5697b4e4226e222a45a7f4e7dea5 (patch)
treecb19b2d818b4258d87fc1295e8c439fbe33de8b0 /source/blender
parent9dad2a0e086e3c459550bb445c436333438ba88a (diff)
GP: Fix template name typo error
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/blenloader/intern/versioning_defaults.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_defaults.c b/source/blender/blenloader/intern/versioning_defaults.c
index d783d1d54f4..76fb42dc0b6 100644
--- a/source/blender/blenloader/intern/versioning_defaults.c
+++ b/source/blender/blenloader/intern/versioning_defaults.c
@@ -93,7 +93,7 @@ void BLO_update_defaults_startup_blend(Main *bmain, const char *app_template)
}
/* For 2D animation template. */
- if (app_template && STREQ(app_template, "2D Animation")) {
+ if (app_template && STREQ(app_template, "2D_Animation")) {
for (WorkSpace *workspace = bmain->workspaces.first; workspace; workspace = workspace->id.next) {
const char *name = workspace->id.name + 2;