Reverse default direction of "rotate colors" to match the (only rotation direction) of rotate colors in trunk

This commit is contained in:
Andrew Wiggin
2011-12-02 16:57:22 +00:00
parent 1906410cc2
commit 397aad23c8

View File

@@ -2005,7 +2005,7 @@ void MESH_OT_colors_rotate(wmOperatorType *ot)
ot->flag= OPTYPE_REGISTER|OPTYPE_UNDO;
/* props */
RNA_def_enum(ot->srna, "direction", direction_items, DIRECTION_CW, "Direction", "Direction to rotate edge around");
RNA_def_enum(ot->srna, "direction", direction_items, DIRECTION_CCW, "Direction", "Direction to rotate edge around");
}
void MESH_OT_colors_reverse(wmOperatorType *ot)