UserPrefs: increase max undo steps to 256

This commit is contained in:
Campbell Barton 2015-02-07 04:26:57 +11:00
parent 8ab1188e39
commit fa9e42b57d
1 changed files with 1 additions and 1 deletions

View File

@ -3535,7 +3535,7 @@ static void rna_def_userdef_edit(BlenderRNA *brna)
/* Undo */
prop = RNA_def_property(srna, "undo_steps", PROP_INT, PROP_NONE);
RNA_def_property_int_sdna(prop, NULL, "undosteps");
RNA_def_property_range(prop, 0, 64);
RNA_def_property_range(prop, 0, 256);
RNA_def_property_int_funcs(prop, NULL, "rna_userdef_undo_steps_set", NULL);
RNA_def_property_ui_text(prop, "Undo Steps", "Number of undo steps available (smaller values conserve memory)");