From 7dbfc864e6f851869fb8ec46fc8755c034028590 Mon Sep 17 00:00:00 2001 From: Nathan Craddock Date: Mon, 29 Jun 2020 20:23:28 -0600 Subject: Outliner: Add auto scrolling during drag and drop Pan the view when dragging elements near the borders. This uses the same operator that scrolls the region during modifiers drag and drop. --- source/blender/editors/space_outliner/outliner_dragdrop.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source') diff --git a/source/blender/editors/space_outliner/outliner_dragdrop.c b/source/blender/editors/space_outliner/outliner_dragdrop.c index c2c9f3a5bfb..70a628eead0 100644 --- a/source/blender/editors/space_outliner/outliner_dragdrop.c +++ b/source/blender/editors/space_outliner/outliner_dragdrop.c @@ -907,6 +907,9 @@ static int outliner_item_drag_drop_invoke(bContext *C, return (OPERATOR_CANCELLED | OPERATOR_PASS_THROUGH); } + /* Scroll view when dragging near edges */ + WM_operator_name_call(C, "VIEW2D_OT_edge_pan", WM_OP_INVOKE_DEFAULT, NULL); + wmDrag *drag = WM_event_start_drag(C, data.icon, WM_DRAG_ID, NULL, 0.0, WM_DRAG_NOP); if (ELEM(GS(data.drag_id->name), ID_OB, ID_GR)) { -- cgit v1.2.3