From ce137699f9447a63e531631b46e265106cb91c71 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 21 Nov 2018 21:39:19 +0100 Subject: Cleanup: Move debug warning message about panels missing category from drawing code to registering code. In drawing it was pretty stupid (since we did not know *which* panels were affected), and really, really annoyingly noisy! --- source/blender/makesrna/intern/rna_ui.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source/blender/makesrna/intern/rna_ui.c') diff --git a/source/blender/makesrna/intern/rna_ui.c b/source/blender/makesrna/intern/rna_ui.c index 5f4b6ffc41c..ea39ce72598 100644 --- a/source/blender/makesrna/intern/rna_ui.c +++ b/source/blender/makesrna/intern/rna_ui.c @@ -249,6 +249,9 @@ static StructRNA *rna_Panel_register( if (dummypt.category[0] == '\0') { /* Use a fallback, otherwise an empty value will draw the panel in every category. */ strcpy(dummypt.category, PNL_CATEGORY_FALLBACK); +#ifndef NDEBUG + printf("Registering panel class: '%s' misses category, please update the script\n", dummypt.idname); +#endif } } else { -- cgit v1.2.3