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:
authorNathan Craddock <nzcraddock@gmail.com>2021-01-05 23:55:32 +0300
committerNathan Craddock <nzcraddock@gmail.com>2021-02-16 04:07:40 +0300
commitc63df3b33f011d524fc8dd1b8fc28f896e876a99 (patch)
tree2793f1457d60faf73dbae0fb87eb5987d977a134 /source/blender/makesrna
parent3e55d7d60542bd00fe0a200da66d99582cc387e0 (diff)
UI: Clarify descriptions in properties popover
Updates the descriptions and labels for outliner sync in the properties editor popover to be more clear. Differential Revision: https://developer.blender.org/D10010
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_space.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c
index 251845ee5b0..f5abe681d91 100644
--- a/source/blender/makesrna/intern/rna_space.c
+++ b/source/blender/makesrna/intern/rna_space.c
@@ -4787,13 +4787,21 @@ static void rna_def_space_properties(BlenderRNA *brna)
PropertyRNA *prop;
static const EnumPropertyItem tab_sync_items[] = {
- {PROPERTIES_SYNC_ON, "ON", 0, "On", "Always sync from outliner editors to this editor"},
- {PROPERTIES_SYNC_OFF, "OFF", 0, "Off", "Never sync from outliner editors to this editor"},
+ {PROPERTIES_SYNC_ALWAYS,
+ "ALWAYS",
+ 0,
+ "Always",
+ "Always change tabs when clicking an icon in an outliner"},
+ {PROPERTIES_SYNC_NEVER,
+ "NEVER",
+ 0,
+ "Never",
+ "Never change tabs when clicking an icon in an outliner"},
{PROPERTIES_SYNC_AUTO,
"AUTO",
0,
"Auto",
- "Sync when this editor shares an edge with an outliner editor"},
+ "Change tabs only when this editor shares a border the outliner"},
{0, NULL, 0, NULL, NULL},
};
@@ -4852,7 +4860,9 @@ static void rna_def_space_properties(BlenderRNA *brna)
prop = RNA_def_property(srna, "outliner_sync", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_sdna(prop, NULL, "outliner_sync");
RNA_def_property_enum_items(prop, tab_sync_items);
- RNA_def_property_ui_text(prop, "Outliner Sync", "Sync tabs from outliner datablock selection");
+ RNA_def_property_ui_text(prop,
+ "Outliner Sync",
+ "Change to the corresponding tab when outliner data icons are clicked");
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_PROPERTIES, NULL);
}