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/editors
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/editors')
-rw-r--r--source/blender/editors/space_buttons/buttons_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c
index e2b889bece1..76c0fc07429 100644
--- a/source/blender/editors/space_buttons/buttons_context.c
+++ b/source/blender/editors/space_buttons/buttons_context.c
@@ -759,7 +759,7 @@ bool ED_buttons_should_sync_with_outliner(const bContext *C,
ScrArea *active_area = CTX_wm_area(C);
const bool auto_sync = ED_area_has_shared_border(active_area, area) &&
sbuts->outliner_sync == PROPERTIES_SYNC_AUTO;
- return auto_sync || sbuts->outliner_sync == PROPERTIES_SYNC_ON;
+ return auto_sync || sbuts->outliner_sync == PROPERTIES_SYNC_ALWAYS;
}
void ED_buttons_set_context(const bContext *C,