Hide internal property of knife_cut operator

This commit is contained in:
Sergey Sharybin
2012-01-31 16:24:02 +00:00
parent e76a87c0b2
commit 58646f10a1

View File

@@ -407,7 +407,8 @@ void MESH_OT_knife_cut(wmOperatorType *ot)
// doesn't work atm.. RNA_def_enum(ot->srna, "corner_cut_pattern", corner_type_items, SUBDIV_CORNER_INNERVERT, "Corner Cut Pattern", "Topology pattern to use to fill a face after cutting across its corner");
/* internal */
RNA_def_int(ot->srna, "cursor", BC_KNIFECURSOR, 0, INT_MAX, "Cursor", "", 0, INT_MAX);
prop = RNA_def_int(ot->srna, "cursor", BC_KNIFECURSOR, 0, INT_MAX, "Cursor", "", 0, INT_MAX);
RNA_def_property_flag(prop, PROP_HIDDEN);
}
/* ******************************************************* */