Fix #33277: vertex merge would merge UVs by default, disabled that now by again

like it did before bmesh.

Neither method is perfect, ideally it should do smart detection of UV islands
but without that it's better to disable because it is more difficult to recover
from incorrectly merged UVs than ones that were not merged.
This commit is contained in:
Brecht Van Lommel 2012-11-23 19:10:56 +00:00
parent 2a9b5e8f81
commit f5bf63dc96

@ -2177,7 +2177,7 @@ void MESH_OT_merge(wmOperatorType *ot)
/* properties */
ot->prop = RNA_def_enum(ot->srna, "type", merge_type_items, 3, "Type", "Merge method to use");
RNA_def_enum_funcs(ot->prop, merge_type_itemf);
RNA_def_boolean(ot->srna, "uvs", 1, "UVs", "Move UVs according to merge");
RNA_def_boolean(ot->srna, "uvs", 0, "UVs", "Move UVs according to merge");
}