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
path: root/source
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2016-04-02 10:52:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-04-02 10:52:52 +0300
commitb03ff0bbf8ec33fab734ebd8c61b4410e666f957 (patch)
treeb41e87e4a2a93fdde509a451bb5c669128359db7 /source
parente02d0de36e89cf2419dbbf36afd36d8d25b94c55 (diff)
Fix T48030: Can't zoom VSE properties panel
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/interface/view2d_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/view2d_ops.c b/source/blender/editors/interface/view2d_ops.c
index ca1efb82ae9..f60fed398ec 100644
--- a/source/blender/editors/interface/view2d_ops.c
+++ b/source/blender/editors/interface/view2d_ops.c
@@ -572,7 +572,7 @@ static void view_zoom_axis_lock_defaults(bContext *C, bool r_do_zoom_xy[2])
if (sa && sa->spacetype == SPACE_SEQ) {
ARegion *ar = CTX_wm_region(C);
- if (ar && ar->regiontype != RGN_TYPE_PREVIEW)
+ if (ar && ar->regiontype == RGN_TYPE_WINDOW)
r_do_zoom_xy[1] = false;
}
}