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:
Diffstat (limited to 'source/blender/editors/space_buttons')
-rw-r--r--source/blender/editors/space_buttons/buttons_context.c33
1 files changed, 16 insertions, 17 deletions
diff --git a/source/blender/editors/space_buttons/buttons_context.c b/source/blender/editors/space_buttons/buttons_context.c
index c1f29231f96..e2b889bece1 100644
--- a/source/blender/editors/space_buttons/buttons_context.c
+++ b/source/blender/editors/space_buttons/buttons_context.c
@@ -752,26 +752,25 @@ static bool is_pointer_in_path(ButsContextPath *path, PointerRNA *ptr)
return false;
}
-void ED_buttons_set_context(const bContext *C, PointerRNA *ptr, const int context)
+bool ED_buttons_should_sync_with_outliner(const bContext *C,
+ const SpaceProperties *sbuts,
+ ScrArea *area)
{
ScrArea *active_area = CTX_wm_area(C);
- bScreen *screen = CTX_wm_screen(C);
-
- LISTBASE_FOREACH (ScrArea *, area, &screen->areabase) {
- /* Only update for properties editors that are visible and share a border. */
- if (area->spacetype != SPACE_PROPERTIES) {
- continue;
- }
- if (!ED_area_has_shared_border(active_area, area)) {
- continue;
- }
+ 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;
+}
- SpaceProperties *sbuts = (SpaceProperties *)area->spacedata.first;
- ButsContextPath path;
- if (buttons_context_path(C, sbuts, &path, context, 0) && is_pointer_in_path(&path, ptr)) {
- sbuts->mainbuser = context;
- sbuts->mainb = sbuts->mainbuser;
- }
+void ED_buttons_set_context(const bContext *C,
+ SpaceProperties *sbuts,
+ PointerRNA *ptr,
+ const int context)
+{
+ ButsContextPath path;
+ if (buttons_context_path(C, sbuts, &path, context, 0) && is_pointer_in_path(&path, ptr)) {
+ sbuts->mainbuser = context;
+ sbuts->mainb = sbuts->mainbuser;
}
}