fix for presets reusing previous options (which broke preset add/remove)

This commit is contained in:
2012-02-09 13:02:22 +00:00
parent c966601e86
commit a43e627371

View File

@@ -35,10 +35,11 @@ class AddPresetBase():
name="Name",
description="Name of the preset, used to make the path name",
maxlen=64,
options={'SKIP_SAVE'},
)
remove_active = bpy.props.BoolProperty(
default=False,
options={'HIDDEN'},
options={'HIDDEN', 'SKIP_SAVE'},
)
@staticmethod