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:
authorPhilipp Oeser <info@graphics-engineer.com>2019-05-17 11:01:19 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2019-05-17 11:01:19 +0300
commite02f68c57757f07fdacdc9db4a0ad38533dd74fb (patch)
treeecd96353ff054138b72febdc92145a99d7f419fc
parentd7628d4b7fcd72af48e7b28891e63c9abd88e0a1 (diff)
Fix T64713: Link to Collection Textfield does not become active
automatically
-rw-r--r--source/blender/editors/object/object_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c
index 9fba0d89c4a..a542911f4d4 100644
--- a/source/blender/editors/object/object_edit.c
+++ b/source/blender/editors/object/object_edit.c
@@ -1779,4 +1779,5 @@ void OBJECT_OT_link_to_collection(wmOperatorType *ot)
"Name",
"Name of the newly added collection");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
+ ot->prop = prop;
}