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:
authorCampbell Barton <ideasman42@gmail.com>2019-03-21 16:30:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-21 16:32:01 +0300
commit9a09246dc02df29302130fc902cc69f827c99311 (patch)
tree412c9af8fd6a74c8e3f6194a83abbeace3a1c2e4 /source/blender/editors/object
parent19dc7f7fdfc996f7cb68f3f5269c9ce7b839a005 (diff)
WM: enable activate on init for wmOperatorType.prop
This enables popups to edit text when displayed, use for new collection popup.
Diffstat (limited to 'source/blender/editors/object')
-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 1964cd53cc7..7950e79162d 100644
--- a/source/blender/editors/object/object_edit.c
+++ b/source/blender/editors/object/object_edit.c
@@ -1711,6 +1711,7 @@ void OBJECT_OT_move_to_collection(wmOperatorType *ot)
prop = RNA_def_string(ot->srna, "new_collection_name", NULL, MAX_NAME, "Name",
"Name of the newly added collection");
RNA_def_property_flag(prop, PROP_SKIP_SAVE);
+ ot->prop = prop;
}
void OBJECT_OT_link_to_collection(wmOperatorType *ot)