From 8ce1a602627350bf986da5e3f60d9edd38006d52 Mon Sep 17 00:00:00 2001 From: Nathan Craddock Date: Sat, 20 Jun 2020 16:02:54 -0600 Subject: Fix T71812: Outliner walk navigation not activating Walk navigation used a separate flag to select the element. This is because activation and mode toggling were connected until rB702e00f91088 cleaned up the selection logic. Now walk navigation can activate objects and other elements without changing modes. This also addresses renaming in the outliner which did renaming from the active element, not the walk element. --- source/blender/makesdna/DNA_outliner_types.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_outliner_types.h b/source/blender/makesdna/DNA_outliner_types.h index 9776063f220..d8a7599e4cb 100644 --- a/source/blender/makesdna/DNA_outliner_types.h +++ b/source/blender/makesdna/DNA_outliner_types.h @@ -62,8 +62,7 @@ enum { TSE_DRAG_AFTER = (1 << 8), /* Needed because outliner-only elements can be active */ TSE_ACTIVE = (1 << 9), - /* Needed because walk selection should not activate */ - TSE_ACTIVE_WALK = (1 << 10), + /* TSE_ACTIVE_WALK = (1 << 10), */ /* Unused */ TSE_DRAG_ANY = (TSE_DRAG_INTO | TSE_DRAG_BEFORE | TSE_DRAG_AFTER), }; -- cgit v1.2.3