[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52925] trunk/blender/source/blender/ makesrna/intern/rna_ui.c: Fix for misleading doc string of panel header options.

Lukas Toenne lukas.toenne at googlemail.com
Wed Dec 12 13:50:45 CET 2012


Revision: 52925
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52925
Author:   lukastoenne
Date:     2012-12-12 12:50:45 +0000 (Wed, 12 Dec 2012)
Log Message:
-----------
Fix for misleading doc string of panel header options.

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_ui.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_ui.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_ui.c	2012-12-12 12:50:43 UTC (rev 52924)
+++ trunk/blender/source/blender/makesrna/intern/rna_ui.c	2012-12-12 12:50:45 UTC (rev 52925)
@@ -651,8 +651,8 @@
 	static EnumPropertyItem panel_flag_items[] = {
 		{PNL_DEFAULT_CLOSED, "DEFAULT_CLOSED", 0, "Default Closed",
 		                     "Defines if the panel has to be open or collapsed at the time of its creation"},
-		{PNL_NO_HEADER, "HIDE_HEADER", 0, "Show Header",
-		                "If set to True, the panel shows a header, which contains a clickable "
+		{PNL_NO_HEADER, "HIDE_HEADER", 0, "Hide Header",
+		                "If set to False, the panel shows a header, which contains a clickable "
 		                "arrow to collapse the panel and the label (see bl_label)"},
 		{0, NULL, 0, NULL, NULL}
 	};




More information about the Bf-blender-cvs mailing list