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>2018-10-30 08:16:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-30 08:20:38 +0300
commitf907eb4268ccea96869fc36c8aa1045507c066e8 (patch)
treedbbc3602b85d369365dc601ac60f984fbe09bea7 /source/blender/makesrna/intern/rna_screen.c
parentf711c44b8dc8e10b37b387cefabb7236ae77decd (diff)
PyAPI: Use 'None' arg to clear header text
Diffstat (limited to 'source/blender/makesrna/intern/rna_screen.c')
-rw-r--r--source/blender/makesrna/intern/rna_screen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_screen.c b/source/blender/makesrna/intern/rna_screen.c
index fdfbdfa4b39..f4311f820ce 100644
--- a/source/blender/makesrna/intern/rna_screen.c
+++ b/source/blender/makesrna/intern/rna_screen.c
@@ -332,8 +332,9 @@ static void rna_def_area_api(StructRNA *srna)
func = RNA_def_function(srna, "header_text_set", "ED_area_status_text");
RNA_def_function_ui_description(func, "Set the header status text");
- parm = RNA_def_string(func, "text", NULL, 0, "Text", "New string for the header, empty string clears the text");
+ parm = RNA_def_string(func, "text", NULL, 0, "Text", "New string for the header, None clears the text");
RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
+ RNA_def_property_clear_flag(parm, PROP_NEVER_NULL);
}
static void rna_def_area(BlenderRNA *brna)