From 3a8d10a713343543ea389e266c4774be9446891a Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Mon, 3 Oct 2005 19:50:05 +0000 Subject: Brought back Outliner operations! Since clicking on outliner items activates/selects, and not all outliner elements allow selection (like scene, mesh, material, etc) there's another selection method needed. It works by leftclicking (click-drag works too) outside of the outliner icons or texts. This allows rapid selecting, without any change in the other windows. Then press Wkey or RightMouse for an operations menu. Based on the selection you get a menu with options. Currently available; - Objects: Select/Deselect/Delete - Materials: Unlink - Textures: Unlink - Bones: Select/Deselect/Hide/Unhide Notes: - mixed selections give an error. - selection doesn't flush down into closed outliner items. - selection state is persistant (saved in files), and unique per Outliner window, so can be used as sortof temporal grouping. Hotkey SHIFT+A: select/deselect all open outliner items The system can be easily expanded with a lot of interesting options, of course. --- source/blender/src/header_action.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source/blender/src/header_action.c') diff --git a/source/blender/src/header_action.c b/source/blender/src/header_action.c index bd14a933d42..216309ceb94 100644 --- a/source/blender/src/header_action.c +++ b/source/blender/src/header_action.c @@ -147,7 +147,9 @@ void do_action_buttons(unsigned short event) G.v2d->cur.xmax= 100; } } - + G.v2d->cur.ymin= 0.0f; + G.v2d->cur.ymax= 1000.0f; + G.v2d->tot= G.v2d->cur; test_view2d(G.v2d, curarea->winx, curarea->winy); -- cgit v1.2.3