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

Chris Want cwant at ualberta.ca
Sat Jan 29 22:34:45 CET 2005


hos (Chris Want) 2005/01/29 22:34:45 CET

  Modified files:
    blender/source/blender/src space.c 
  
  Log:
  Correcting the logic of the hotkey modifiers for select
  non-manifold. 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).
  
  Revision  Changes    Path
  1.215     +3 -2      blender/source/blender/src/space.c
    <http://projects.blender.org/viewcvs/viewcvs.cgi/blender/source/blender/src/space.c.diff?r1=1.214&r2=1.215&cvsroot=bf-blender>



More information about the Bf-blender-cvs mailing list