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>2019-04-25 15:27:56 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-04-25 15:29:26 +0300
commit10c4bde79272add4ae4a26c18ee1013032d277a0 (patch)
tree36bb7138e83cab11e0fe8e8d285b6067b789281a /source/blender/windowmanager
parent0d26bb7672fab239eab7e3f2305fc77cf4f408f7 (diff)
Fix T63494: linked scenes missing from sequencer Add > Scene menu
Differential Revision: https://developer.blender.org/D4674
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 9680f82fe8b..0b4de2c6e1f 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -3814,7 +3814,7 @@ const EnumPropertyItem *RNA_scene_without_active_itemf(bContext *C,
ptr,
r_free,
C ? (ID *)CTX_data_main(C)->scenes.first : NULL,
- true,
+ false,
rna_id_enum_filter_single,
scene_active);
}