SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY SILLY.

People in blendercoders seem to think they need to pay attention to rigid, conservative users.....ok...so I moved the selection-> center snap in the shift-s menu to place number 5....sigh
This commit is contained in:
Roel Spruit 2003-10-05 15:28:44 +00:00
parent 336afad8d6
commit d9ec78a895

@ -1150,24 +1150,24 @@ void snapmenu()
{
short event;
event = pupmenu("SNAP %t|Sel -> Grid%x1|Sel -> Curs%x2|Sel -> Center%x3|Curs-> Grid%x4|Curs-> Sel%x5");
event = pupmenu("SNAP %t|Sel -> Grid%x1|Sel -> Curs%x2|Curs-> Grid%x3|Curs-> Sel%x4|Sel-> Center%x5");
switch (event) {
case 1: /*Selection to grid*/
case 1: /*Selection to grid*/
snap_sel_to_grid();
break;
case 2: /*Selection to cursor*/
case 2: /*Selection to cursor*/
snap_sel_to_curs();
break;
case 3: /*Selection to center of selection*/
snap_to_center();
break;
case 4: /*Cursor to grid*/
break;
case 3: /*Cursor to grid*/
snap_curs_to_grid();
break;
case 5: /*Cursor to selection*/
case 4: /*Cursor to selection*/
snap_curs_to_sel();
break;
case 5: /*Selection to center of selection*/
snap_to_center();
break;
}
}