From 48e34b995686d50177932660ec422528eb4a6da8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 24 Aug 2010 02:12:09 +0000 Subject: - pythons 'del somevalue.attr' could crash when used with the rna api (reported by Luca) eg: bpy.context.StringProperty(attr='myprop'); del bpy.context.myprop - made rna StringProperty/PointerProperty & similar into class methods. - file selector hide option was inverted --- release/scripts/ui/space_filebrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release/scripts') diff --git a/release/scripts/ui/space_filebrowser.py b/release/scripts/ui/space_filebrowser.py index cb95ac87eef..b3ac0068c06 100644 --- a/release/scripts/ui/space_filebrowser.py +++ b/release/scripts/ui/space_filebrowser.py @@ -49,7 +49,7 @@ class FILEBROWSER_HT_header(bpy.types.Header): layout.prop(params, "display_type", expand=True, text="") layout.prop(params, "sort_method", expand=True, text="") - layout.prop(params, "show_hidden", text="Hide Invisible") + layout.prop(params, "show_hidden") layout.prop(params, "use_filter", text="", icon='FILTER') row = layout.row(align=True) -- cgit v1.2.3