[tuhopuu-cvs] CVS commit: tuhopuu3/source/blender/src space.c

Chris Want cwant at ualberta.ca
Sat Jan 29 21:51:17 CET 2005


hos (Chris Want) 2005/01/29 21:51:17 CET

  Modified files:
    tuhopuu3/source/blender/src space.c 
  
  Log:
  Correcting some logic with respect to hotkey modifiers, in particular
  the ones used for select non-manifold, select tri's, select quad's,
  and select non-tri/quad. If you want it so all three modifiers are
  needed (e.g. ctrl-alt-shift-MKEY) use:
  
  if ( !(~G.qual & (LR_SHIFTKEY | LR_ALTKEY | LR_CTRLKEY)) )
  
  instead of
  
  if ( G.qual & (LR_SHIFTKEY | LR_ALTKEY | LR_CTRLKEY) )
  
  (which really allows any modifier, alone or in combination, to work).
  
  Also, it now checks for mesh in editmode before doing select Tri's, etc.
  (would crash on objects not in editmode).
  
  Revision  Changes    Path
  1.24      +15 -8     tuhopuu3/source/blender/src/space.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/tuhopuu3/source/blender/src/space.c.diff?r1=1.23&r2=1.24&cvsroot=tuhopuu>



More information about the tuhopuu-cvs mailing list