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:
authorDalai Felinto <dfelinto@gmail.com>2019-05-14 20:28:28 +0300
committerDalai Felinto <dfelinto@gmail.com>2019-05-14 23:51:08 +0300
commit9b80318a284c971eea244cf1a4a3e0312be810c0 (patch)
tree8b2e4383ba6e439a6174d0dd495148fd3a1df0e2 /source/blender/editors
parent913db2e8a4ef84834c6efe04c336aca9fc2851de (diff)
T64607: Outliner UI Tooltips
In the outliner we don't have yet a clear distinction for the users of when to use each of the visibility settings. This changes that by properly naming the property and their tooltips. I'm also unifying the naming between the rna properties and the outliner for collections and objects (e.g., so collection and object hide_select have the same tooltips everywhere). The API did not change.
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_outliner/outliner_draw.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/space_outliner/outliner_draw.c b/source/blender/editors/space_outliner/outliner_draw.c
index 7f8cd4304c3..24141978f57 100644
--- a/source/blender/editors/space_outliner/outliner_draw.c
+++ b/source/blender/editors/space_outliner/outliner_draw.c
@@ -1282,7 +1282,7 @@ static void outliner_draw_restrictbuts(uiBlock *block,
0,
0,
0,
- TIP_("Hide/Show collection in viewport\n"
+ TIP_("Temporarily hide in viewport\n"
"* Ctrl to isolate collection\n"
"* Shift to set/unset inside collections and objects"));
UI_but_func_set(bt,
@@ -1308,7 +1308,7 @@ static void outliner_draw_restrictbuts(uiBlock *block,
0,
0,
0,
- TIP_("Mask out/in objects in collection from view layer\n"
+ TIP_("Mask out objects in collection from view layer\n"
"* Ctrl to isolate collection\n"
"* Shift to set/unset inside collections"));
UI_but_func_set(bt,
@@ -1363,7 +1363,7 @@ static void outliner_draw_restrictbuts(uiBlock *block,
0,
0,
0,
- TIP_("Disable/Enable collection in viewport\n"
+ TIP_("Globally disable in viewports\n"
"* Ctrl to isolate collection\n"
"* Shift to set/unset inside collections and objects"));
if (layer_collection != NULL) {
@@ -1397,7 +1397,7 @@ static void outliner_draw_restrictbuts(uiBlock *block,
0,
0,
0,
- TIP_("Disable/Enable collection in renders\n"
+ TIP_("Globally disable in renders\n"
"* Ctrl to isolate collection\n"
"* Shift to set/unset inside collections and objects"));
if (layer_collection != NULL) {
@@ -1429,7 +1429,7 @@ static void outliner_draw_restrictbuts(uiBlock *block,
0,
0,
0,
- TIP_("Disable/Enable collection for viewport selection\n"
+ TIP_("Disable selection in viewport\n"
"* Ctrl to isolate collection\n"
"* Shift to set/unset inside collections and objects"));
if (layer_collection != NULL) {
@@ -3307,7 +3307,7 @@ void draw_outliner(const bContext *C)
UI_block_emboss_set(block, UI_EMBOSS);
- /* draw edit buttons if nessecery */
+ /* Draw edit buttons if necessary. */
if (te_edit) {
outliner_buttons(C, block, ar, te_edit);
}