From f907eb4268ccea96869fc36c8aa1045507c066e8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 30 Oct 2018 16:16:41 +1100 Subject: PyAPI: Use 'None' arg to clear header text --- source/blender/makesrna/intern/rna_workspace_api.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_workspace_api.c') diff --git a/source/blender/makesrna/intern/rna_workspace_api.c b/source/blender/makesrna/intern/rna_workspace_api.c index 398da78d7f9..83ee5195fd8 100644 --- a/source/blender/makesrna/intern/rna_workspace_api.c +++ b/source/blender/makesrna/intern/rna_workspace_api.c @@ -176,8 +176,9 @@ void RNA_api_workspace(StructRNA *srna) func = RNA_def_function(srna, "status_text_set", "ED_workspace_status_text"); RNA_def_function_flag(func, FUNC_NO_SELF | FUNC_USE_CONTEXT); RNA_def_function_ui_description(func, "Set the status bar text, typically key shortcuts for modal operators"); - parm = RNA_def_string(func, "text", NULL, 0, "Text", "New string for the status bar, empty string clears the text"); + parm = RNA_def_string(func, "text", NULL, 0, "Text", "New string for the status bar, None clears the text"); RNA_def_parameter_flags(parm, 0, PARM_REQUIRED); + RNA_def_property_clear_flag(parm, PROP_NEVER_NULL); } void RNA_api_workspace_tool(StructRNA *srna) -- cgit v1.2.3