Curves in Editmode:
HKEY and Shift HKEY are used to change the handle type of curve control points in the IPO and Action Editors, and also for curves in the 3d view until recently. This commit reverses the hotkey changes in: http://projects.blender.org/pipermail/bf-blender-cvs/2007-May/009879.html For curves, I've changed the show/hide points hotkeys to: * Ctrl Alt HKEY == Hide Point(s) * Alt HKEY == Show All Points These aren't optimal, but at least there are usable hotkeys for this for now. Before, there had been a long-standing hotkey conflict. Better hotkeys can be designed as part of 2.5 work.
This commit is contained in:
@@ -1884,12 +1884,14 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
|
||||
add_hook();
|
||||
else if(G.qual==LR_ALTKEY)
|
||||
revealNurb();
|
||||
else if((G.qual==LR_SHIFTKEY))
|
||||
/* should be G.qual==LR_SHIFTKEY, but that is taken fro handles already */
|
||||
else if((G.qual==(LR_ALTKEY|LR_SHIFTKEY)))
|
||||
hideNurb(1);
|
||||
else if((G.qual==0))
|
||||
/* should be G.qual==0, but that is taken for handles already */
|
||||
else if((G.qual==(LR_ALTKEY|LR_CTRLKEY)))
|
||||
hideNurb(0);
|
||||
else {
|
||||
if(G.qual==LR_CTRLKEY)
|
||||
if(G.qual==LR_CTRLKEY) /* conflict */
|
||||
autocalchandlesNurb_all(1); /* flag=1, selected */
|
||||
else if((G.qual==LR_SHIFTKEY))
|
||||
sethandlesNurb(1);
|
||||
|
||||
Reference in New Issue
Block a user