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:
authorHans Goudey <h.goudey@me.com>2020-09-14 18:39:14 +0300
committerHans Goudey <h.goudey@me.com>2020-09-14 18:39:14 +0300
commit360549b31bc91f107c1a70dba3e68815e6f39b8c (patch)
tree66b36877e5806217e0ef1c02fcebb540c03f62b1 /source/blender/makesrna/intern/rna_space.c
parent530183b60a00fc46f6175ae50fa5d3ff19b664c3 (diff)
Property Search: Use pointer for properties space runtime struct
Diffstat (limited to 'source/blender/makesrna/intern/rna_space.c')
-rw-r--r--source/blender/makesrna/intern/rna_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 13b316a9d5d..a85593cbd90 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -4496,7 +4496,7 @@ static void rna_def_space_properties(BlenderRNA *brna)
/* Property search. */
prop = RNA_def_property(srna, "search_filter", PROP_STRING, PROP_NONE);
- RNA_def_property_string_sdna(prop, NULL, "runtime.search_string");
+ RNA_def_property_string_sdna(prop, NULL, "runtime->search_string");
RNA_def_property_ui_text(prop, "Display Filter", "Live search filtering string");
RNA_def_property_flag(prop, PROP_TEXTEDIT_UPDATE);
RNA_def_property_flag(prop, PROP_CONTEXT_UPDATE);