You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think that I understand what the original intended purpose of those checks and early returns are but I believe in this case it's causing it to copy the empy area into the union output area which results in the output being smaller than the union of the two inputs.
The text was updated successfully, but these errors were encountered:
This code:
Results in this output:
area1 gets "zero'd out" instead of being modified to contain the full union of the input areas.
This is due to the if statments and early returns here:
Adafruit_Blinka_Displayio/displayio/_area.py
Lines 89 to 94 in c35bd2c
I don't think that I understand what the original intended purpose of those checks and early returns are but I believe in this case it's causing it to copy the empy area into the
union
output area which results in the output being smaller than the union of the two inputs.The text was updated successfully, but these errors were encountered: