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:
authorDalai Felinto <dfelinto@gmail.com>2018-01-25 17:42:20 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-01-26 00:26:11 +0300
commit5b67f7a959e4f01c95ed3576a3b4683bd63f67e8 (patch)
treed28621c1efe5349a673a938efe0ae6bbe13aa425 /source/blender/editors/space_outliner/outliner_intern.h
parent7e885e1e1044269659242044bb2c947b4b30ec66 (diff)
Outliner: Implement Add (Ctrl) when moving objects inside collection
Note there is no "text" explaining to users what is going on. I will address this shortly in an upcoming commit.
Diffstat (limited to 'source/blender/editors/space_outliner/outliner_intern.h')
-rw-r--r--source/blender/editors/space_outliner/outliner_intern.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/editors/space_outliner/outliner_intern.h b/source/blender/editors/space_outliner/outliner_intern.h
index 9bc24e65941..1be709415e8 100644
--- a/source/blender/editors/space_outliner/outliner_intern.h
+++ b/source/blender/editors/space_outliner/outliner_intern.h
@@ -48,6 +48,7 @@ struct ID;
struct Object;
struct bPoseChannel;
struct EditBone;
+struct wmEvent;
struct wmKeyConfig;
@@ -72,7 +73,9 @@ typedef enum TreeTraversalAction {
typedef void (*TreeElementReinsertFunc)(struct Main *bmain,
struct SpaceOops *soops,
struct TreeElement *insert_element,
- struct TreeElement *insert_handle, TreeElementInsertType action);
+ struct TreeElement *insert_handle,
+ TreeElementInsertType action,
+ const struct wmEvent *event);
/**
* Executed on (almost) each mouse move while dragging. It's supposed to give info
* if reinserting insert_element before/after/into insert_handle would be allowed.