Bugreport in irc, alxarch report:

Fgon flushing for EM_selectmode_flush() should not happen in face select
mode. That prevents 'select swap' or deselecting fgons.
This commit is contained in:
Ton Roosendaal
2008-10-07 14:24:08 +00:00
parent dc14259c83
commit 0d7d520ffa

View File

@@ -650,7 +650,9 @@ void EM_selectmode_flush(void)
if(efa->f & SELECT) EM_select_face(efa, 1);
}
}
check_fgons_selection();
if(!(G.scene->selectmode & SCE_SELECT_FACE))
check_fgons_selection();
}