From 851c5781be6e347d7e0c7198e225e9bce8479c65 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Sun, 10 Oct 2004 11:33:19 +0000 Subject: - Added Outliner selection As a means to indicate items in the Outliner to do operations on, you can select with RMB items. Works like FileSelect here. Since selection in Outliner is only on outliner level, no further UI updates happen. That is reserved for LMB actions. Implemented right now are only few operations... they can be called up with the WKEY (the famous spare key :) - if objects selected, a menu appears with choices - if materials or textures selected, a meny appears to unlink them If you make mixed or confusing selections you get a warning message. TODO: add selection color in theme, and of course more operations. --- source/blender/src/header_oops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/src/header_oops.c') diff --git a/source/blender/src/header_oops.c b/source/blender/src/header_oops.c index c38534f471a..32752c63b55 100644 --- a/source/blender/src/header_oops.c +++ b/source/blender/src/header_oops.c @@ -169,7 +169,7 @@ static uiBlock *oops_viewmenu(void *arg_unused) uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, ""); - uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show/Hide All|A", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 5, ""); + uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show/Hide All", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 5, ""); uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show Hierarchy|Home", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 6, ""); uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Show Active|NumPad .", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 1, 7, ""); } -- cgit v1.2.3