Commit: 6a58557794262e32c2ceb3d46bb41cc8104232df
Author: Campbell Barton
Date:   Fri Jul 18 11:51:48 2014 +1000
https://developer.blender.org/rB6a58557794262e32c2ceb3d46bb41cc8104232df

Fix -1 passed as bool

===================================================================

M       source/blender/makesrna/intern/rna_action.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_action.c 
b/source/blender/makesrna/intern/rna_action.c
index ecfa128..750c98a 100644
--- a/source/blender/makesrna/intern/rna_action.c
+++ b/source/blender/makesrna/intern/rna_action.c
@@ -281,7 +281,7 @@ static void rna_def_dopesheet(BlenderRNA *brna)
        RNA_def_property_boolean_sdna(prop, NULL, "flag", 
ADS_FLAG_SHOW_DBFILTERS);
        RNA_def_property_ui_text(prop, "Show Datablock Filters",
                                 "Show options for whether channels related to 
certain types of data are included");
-       RNA_def_property_ui_icon(prop, ICON_DISCLOSURE_TRI_RIGHT, -1);
+       RNA_def_property_ui_icon(prop, ICON_DISCLOSURE_TRI_RIGHT, 1);
        RNA_def_property_update(prop, NC_ANIMATION | ND_ANIMCHAN, NULL);
        
        /* General Filtering Settings */

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to