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:
authorHans Goudey <h.goudey@me.com>2021-02-26 04:23:02 +0300
committerHans Goudey <h.goudey@me.com>2021-02-26 04:23:19 +0300
commit81e795e7f011e7746b969c877cfaaeeab100883a (patch)
treef8bf19370f408fa84291c37148fac07af72d0669
parentb1b9671c9329287a9fb56ef88cc59ca32926faa4 (diff)
Fix T84953: Incorrect tooltip for dragging collections
"Shift to parent" does not make any sense for collections since they don't have parenting like objects. This commit just adds a simple check for whether the first drag ID is an object before displaying that part of the message. Differential Revision: https://developer.blender.org/D10203
-rw-r--r--source/blender/editors/space_outliner/outliner_dragdrop.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/source/blender/editors/space_outliner/outliner_dragdrop.c b/source/blender/editors/space_outliner/outliner_dragdrop.c
index 6df1e449b97..3090cab75ae 100644
--- a/source/blender/editors/space_outliner/outliner_dragdrop.c
+++ b/source/blender/editors/space_outliner/outliner_dragdrop.c
@@ -1213,11 +1213,23 @@ static bool collection_drop_poll(bContext *C,
*r_tooltip = TIP_("Move after collection");
}
break;
- case TE_INSERT_INTO:
+ case TE_INSERT_INTO: {
tselem->flag |= TSE_DRAG_INTO;
changed = true;
- *r_tooltip = TIP_("Move inside collection (Ctrl to link, Shift to parent)");
+
+ /* Check the type of the drag IDs to avoid the incorrect "Shift to parent"
+ * for collections. Checking the type of the first ID works fine here since
+ * all drag IDs are the same type. */
+ wmDragID *drag_id = (wmDragID *)drag->ids.first;
+ const bool is_object = (GS(drag_id->id->name) == ID_OB);
+ if (is_object) {
+ *r_tooltip = TIP_("Move inside collection (Ctrl to link, Shift to parent)");
+ }
+ else {
+ *r_tooltip = TIP_("Move inside collection (Ctrl to link)");
+ }
break;
+ }
}
}
if (changed) {