Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/screen/area.c
| Context not available. | |||||
| /* Bottom-left. */ | /* Bottom-left. */ | ||||
| {sa->totrct.xmin, | {sa->totrct.xmin, | ||||
| sa->totrct.ymin, | sa->totrct.ymin, | ||||
| sa->totrct.xmin + (AZONESPOT - 1), | sa->totrct.xmin + AZONESPOTW, | ||||
| sa->totrct.ymin + (AZONESPOT - 1)}, | sa->totrct.ymin + AZONESPOTH}, | ||||
| /* Bottom-right. */ | /* Bottom-right. */ | ||||
| {sa->totrct.xmax - (AZONESPOT - 1), | {sa->totrct.xmax - AZONESPOTW, | ||||
| sa->totrct.ymin, | sa->totrct.ymin, | ||||
| sa->totrct.xmax, | sa->totrct.xmax, | ||||
| sa->totrct.ymin + (AZONESPOT - 1)}, | sa->totrct.ymin + AZONESPOTH}, | ||||
| /* Top-left. */ | /* Top-left. */ | ||||
| {sa->totrct.xmin, | {sa->totrct.xmin, | ||||
| sa->totrct.ymax - (AZONESPOT - 1), | sa->totrct.ymax - AZONESPOTH, | ||||
| sa->totrct.xmin + (AZONESPOT - 1), | sa->totrct.xmin + AZONESPOTW, | ||||
| sa->totrct.ymax}, | sa->totrct.ymax}, | ||||
| /* Top-right. */ | /* Top-right. */ | ||||
| {sa->totrct.xmax - (AZONESPOT - 1), | {sa->totrct.xmax - AZONESPOTW, | ||||
| sa->totrct.ymax - (AZONESPOT - 1), | sa->totrct.ymax - AZONESPOTH, | ||||
| sa->totrct.xmax, | sa->totrct.xmax, | ||||
| sa->totrct.ymax}}; | sa->totrct.ymax}}; | ||||
| Context not available. | |||||