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:
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_old.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_old.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/gpencil/gpencil_old.c b/source/blender/editors/gpencil/gpencil_old.c
index 5c01de55885..1474e948920 100644
--- a/source/blender/editors/gpencil/gpencil_old.c
+++ b/source/blender/editors/gpencil/gpencil_old.c
@@ -178,18 +178,18 @@ static int gpencil_convert_old_files_exec(bContext *C, wmOperator *UNUSED(op))
}
else if (ob->type == OB_EMPTY) {
/* Empty with GP data - This should be able to be converted
- * to a GP object with little data loss
- */
+ * to a GP object with little data loss
+ */
ob->data = ob->gpd;
ob->gpd = NULL;
ob->type = OB_GPENCIL;
}
else {
/* FIXME: What to do in this case?
- *
- * We cannot create new objects for these, as we don't have a scene & scene layer
- * to put them into from here...
- */
+ *
+ * We cannot create new objects for these, as we don't have a scene & scene layer
+ * to put them into from here...
+ */
printf("WARNING: Old Grease Pencil data ('%s') still exists on Object '%s'\n",
ob->gpd->id.name + 2, ob->id.name + 2);
}