Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2004-10-10 15:33:19 +0400
committerTon Roosendaal <ton@blender.org>2004-10-10 15:33:19 +0400
commit851c5781be6e347d7e0c7198e225e9bce8479c65 (patch)
tree343bf4b974e5cf03023c7913463e7c776b7854fb /source/blender/src/header_oops.c
parent7028b1eb99336b74d298f6561165f4f71ced9e39 (diff)
- 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.
Diffstat (limited to 'source/blender/src/header_oops.c')
-rw-r--r--source/blender/src/header_oops.c2
1 files changed, 1 insertions, 1 deletions
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, "");
}