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:
authorDalai Felinto <dfelinto@gmail.com>2018-12-04 22:40:28 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-12-04 22:42:31 +0300
commitbe012c88c52314c482754107ec05b39c835e9e0e (patch)
tree256f547086be0b758f6a6fdf4e40c455b90385ae /source/blender/editors/screen/area.c
parent7c56ac235562815231b195fd5a4dd4515353c0dd (diff)
Cleanup: Action zone coordinates
No functional changes, but it makes all the coordinates more consistent (going from small to larger values). It helps debugging in the future to be able to rule out vertex order as a culprit.
Diffstat (limited to 'source/blender/editors/screen/area.c')
-rw-r--r--source/blender/editors/screen/area.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/screen/area.c b/source/blender/editors/screen/area.c
index 9e73fea12ce..c6af7cda220 100644
--- a/source/blender/editors/screen/area.c
+++ b/source/blender/editors/screen/area.c
@@ -778,20 +778,20 @@ static void area_azone_initialize(wmWindow *win, const bScreen *screen, ScrArea
sa->totrct.xmin + (AZONESPOT - 1),
sa->totrct.ymin + (AZONESPOT - 1)},
/* Bottom-right. */
- {sa->totrct.xmax,
+ {sa->totrct.xmax - (AZONESPOT - 1),
sa->totrct.ymin,
- sa->totrct.xmax - (AZONESPOT - 1),
+ sa->totrct.xmax,
sa->totrct.ymin + (AZONESPOT - 1)},
/* Top-left. */
{sa->totrct.xmin,
- sa->totrct.ymax,
+ sa->totrct.ymax - (AZONESPOT - 1),
sa->totrct.xmin + (AZONESPOT - 1),
- sa->totrct.ymax - (AZONESPOT - 1)},
+ sa->totrct.ymax},
/* Top-right. */
- {sa->totrct.xmax,
- sa->totrct.ymax,
- sa->totrct.xmax - (AZONESPOT - 1),
- sa->totrct.ymax - (AZONESPOT - 1)}};
+ {sa->totrct.xmax - (AZONESPOT - 1),
+ sa->totrct.ymax - (AZONESPOT - 1),
+ sa->totrct.xmax,
+ sa->totrct.ymax}};
for (int i = 0; i < 4; i++) {
/* can't click on bottom corners on OS X, already used for resizing */