Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/screen/screen_ops.c
| Show First 20 Lines • Show All 2,989 Lines • ▼ Show 20 Lines | static void SCREEN_OT_redo_last(wmOperatorType *ot) | ||||
| ot->poll = ED_operator_screenactive; | ot->poll = ED_operator_screenactive; | ||||
| } | } | ||||
| /* ************** region four-split operator ***************************** */ | /* ************** region four-split operator ***************************** */ | ||||
| static void view3d_localview_update_rv3d(struct RegionView3D *rv3d) | static void view3d_localview_update_rv3d(struct RegionView3D *rv3d) | ||||
| { | { | ||||
| if (rv3d->localvd) { | if (rv3d->localviewd) { | ||||
| rv3d->localvd->view = rv3d->view; | rv3d->localviewd->view = rv3d->view; | ||||
| rv3d->localvd->persp = rv3d->persp; | rv3d->localviewd->persp = rv3d->persp; | ||||
| copy_qt_qt(rv3d->localvd->viewquat, rv3d->viewquat); | copy_qt_qt(rv3d->localviewd->viewquat, rv3d->viewquat); | ||||
| } | } | ||||
| } | } | ||||
| static void region_quadview_init_rv3d(ScrArea *sa, ARegion *ar, | static void region_quadview_init_rv3d(ScrArea *sa, ARegion *ar, | ||||
| const char viewlock, const char view, const char persp) | const char viewlock, const char view, const char persp) | ||||
| { | { | ||||
| RegionView3D *rv3d = ar->regiondata; | RegionView3D *rv3d = ar->regiondata; | ||||
| ▲ Show 20 Lines • Show All 1,425 Lines • Show Last 20 Lines | |||||