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:
authorCampbell Barton <ideasman42@gmail.com>2018-11-12 06:31:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-12 06:31:28 +0300
commit30ed837473aae1c418b7cd08d1041acdec282e09 (patch)
treebc54d485625e6527fdcf88f5ec4386ed4a777adf /source/blender/editors/screen/screen_ops.c
parent64b463c2622c447cc2ceedf344b878b3ba67eccf (diff)
Revert "Fix hidden action-zone interaction"
This reverts commit 03e5ba31837cbe91b633e18f19ba0b08e070e0dc. Causes T57729, will look into an alternative fix.
Diffstat (limited to 'source/blender/editors/screen/screen_ops.c')
-rw-r--r--source/blender/editors/screen/screen_ops.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index 9c7e18b0889..6a9f1e13aea 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -685,13 +685,6 @@ static AZone *area_actionzone_refresh_xy(ScrArea *sa, const int xy[2], const boo
AZone *az = NULL;
for (az = sa->actionzones.first; az; az = az->next) {
- if (az->ar) {
- if (az->ar->flag & (RGN_FLAG_HIDDEN | RGN_FLAG_TOO_SMALL)) {
- continue;
- }
- BLI_assert(az->ar->visible);
- }
-
if (BLI_rcti_isect_pt_v(&az->rect, xy)) {
if (az->type == AZONE_AREA) {
/* no triangle intersect but a hotspot circle based on corner */