Temporarily disable absolute snapping

This really should have been finalized as a design task first,
there are too many open topics on how it should work.
This commit is contained in:
Campbell Barton 2015-06-28 10:03:55 +10:00
parent aac5485fca
commit 3d616ccba8
Notes: blender-bot 2023-02-14 11:00:17 +01:00
Referenced by issue #45221, Cutting meta strip including keyframed speed effect produces right part with incorrect length of internal strips
1 changed files with 2 additions and 0 deletions

View File

@ -159,7 +159,9 @@ EnumPropertyItem mesh_select_mode_items[] = {
EnumPropertyItem snap_element_items[] = {
{SCE_SNAP_MODE_INCREMENT, "INCREMENT", ICON_ALIGN, "Grid (increment)", "Snap to increments of grid"},
#if 0
{SCE_SNAP_MODE_GRID, "GRID", ICON_SNAP_INCREMENT, "Grid (absolute)", "Snap to grid"},
#endif
{SCE_SNAP_MODE_VERTEX, "VERTEX", ICON_SNAP_VERTEX, "Vertex", "Snap to vertices"},
{SCE_SNAP_MODE_EDGE, "EDGE", ICON_SNAP_EDGE, "Edge", "Snap to edges"},
{SCE_SNAP_MODE_FACE, "FACE", ICON_SNAP_FACE, "Face", "Snap to faces"},