Fix T48030: Can't zoom VSE properties panel

This commit is contained in:
Campbell Barton 2016-04-02 18:52:52 +11:00
parent e02d0de36e
commit b03ff0bbf8
Notes: blender-bot 2023-02-14 08:01:51 +01:00
Referenced by issue #48030, Can't zoom in the Properties Panel while in VSE
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}