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:
authorPhilipp Oeser <info@graphics-engineer.com>2020-11-11 12:27:44 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-11-11 12:27:44 +0300
commit251b7d77b3459aefbf31193a0edfee9d2423b94b (patch)
tree2c1497069d09c421873fc85758b4e44217456fb7 /source/blender/editors/space_outliner/outliner_select.c
parent9b3dabacbcb3e2e108a49309df647692dab320dc (diff)
parent7ba971d6d855034d5a8f0e8dab1bcd892b5aabd3 (diff)
Merge branch 'blender-v2.91-release' into master
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_select.c')
-rw-r--r--source/blender/editors/space_outliner/outliner_select.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/space_outliner/outliner_select.c b/source/blender/editors/space_outliner/outliner_select.c
index 999525deb3a..044d75b4722 100644
--- a/source/blender/editors/space_outliner/outliner_select.c
+++ b/source/blender/editors/space_outliner/outliner_select.c
@@ -1891,7 +1891,7 @@ static TreeElement *find_walk_select_start_element(SpaceOutliner *space_outliner
}
/* Scroll the outliner when the walk element reaches the top or bottom boundary */
-static void outliner_walk_scroll(ARegion *region, TreeElement *te)
+static void outliner_walk_scroll(SpaceOutliner *space_outliner, ARegion *region, TreeElement *te)
{
/* Account for the header height */
int y_max = region->v2d.cur.ymax - UI_UNIT_Y;
@@ -1899,10 +1899,10 @@ static void outliner_walk_scroll(ARegion *region, TreeElement *te)
/* Scroll if walked position is beyond the border */
if (te->ys > y_max) {
- outliner_scroll_view(region, te->ys - y_max);
+ outliner_scroll_view(space_outliner, region, te->ys - y_max);
}
else if (te->ys < y_min) {
- outliner_scroll_view(region, -(y_min - te->ys));
+ outliner_scroll_view(space_outliner, region, -(y_min - te->ys));
}
}
@@ -1929,7 +1929,7 @@ static int outliner_walk_select_invoke(bContext *C, wmOperator *op, const wmEven
OL_ITEM_SELECT | OL_ITEM_ACTIVATE | (extend ? OL_ITEM_EXTEND : 0));
/* Scroll outliner to focus on walk element */
- outliner_walk_scroll(region, active_te);
+ outliner_walk_scroll(space_outliner, region, active_te);
ED_outliner_select_sync_from_outliner(C, space_outliner);
outliner_tag_redraw_avoid_rebuild_on_open_change(space_outliner, region);