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:
authorBastien Montagne <montagne29@wanadoo.fr>2016-03-28 19:17:45 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-03-28 19:19:43 +0300
commitb1f918bcc53d552dec2a5327b15f77751dca0712 (patch)
tree734d1aedba4d99bc3c070c229efb3131276feef3 /source/blender/editors/space_view3d/view3d_fly.c
parent37b7b3a9355af05ad322491c20dab9fb3e79b54d (diff)
Fix T47958: Crash in Walk or Fly Navigation in Camera mode when invoking from non-3DView region
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_fly.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_fly.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_fly.c b/source/blender/editors/space_view3d/view3d_fly.c
index f3ee99fc3bf..8418cf0980c 100644
--- a/source/blender/editors/space_view3d/view3d_fly.c
+++ b/source/blender/editors/space_view3d/view3d_fly.c
@@ -1065,7 +1065,7 @@ void VIEW3D_OT_fly(wmOperatorType *ot)
ot->invoke = fly_invoke;
ot->cancel = fly_cancel;
ot->modal = fly_modal;
- ot->poll = ED_operator_view3d_active;
+ ot->poll = ED_operator_region_view3d_active;
/* flags */
ot->flag = OPTYPE_BLOCKING;