-> Silly mistake in loop_multiselect() in editmesh_mods.c, called EM_select_flush() instead of EM_selectmode_flush()... Oops!

This commit is contained in:
Geoffrey Bantle 2006-03-03 18:00:33 +00:00
parent 8afc4cf192
commit 932717da38

@ -1004,7 +1004,7 @@ static void loop_multiselect(int looptype)
edgering_select(eed,SELECT);
}
countall();
EM_select_flush();
EM_selectmode_flush();
BIF_undo_push("Edge Ring Multi-Select");
}
else{
@ -1013,7 +1013,7 @@ static void loop_multiselect(int looptype)
edgeloop_select(eed,SELECT);
}
countall();
EM_select_flush();
EM_selectmode_flush();
BIF_undo_push("Edge Loop Multi-Select");
}
MEM_freeN(edarray);