Closed mayorbyrne closed 6 years ago
Hi, sorry to hear that we had a breaking change. I will take a look at it later today!
I did some testing and i think i know what is going on. But I don't understand why it worked with 1.1.0, since i can't figure out what has change since then. I have committed a change to GitHub but i need to do more testing (probably this weekend). It would be great if you could test your use case too and provide some feedback.
5449d5b9d4eb80cf1462f2ebb12e6c24e6e3ba14
Btw. please also set the borderColor of the TextField. ..borderColor = Color.Black
645170d6337c2424585967120471eda424f92061
@bp74 thanks for looking into this! I used the latest 1.3.0+1 and it appears to have fixed the issue seen here.
The version 1.3.0+1 which is available on Pub does not have the fix. The fix is only available if you use the master branch from GitHub. So you have probably used this one, right?
Just saw your other issue report. So you applied the DropShadowFilter which fixes this issue. But it's not a good fix or even workaround to use filters to fix this issue. With the latest commits here on GitHub the masking issue should be fixed, even without the filter workaround.
The DropShadowFilter was a separate issue from this. All I did to remedy #296 was update the stagexl dependency to use the github branch in the pubspec.
Okay great. I will fix the filter issue over the weekend!
@bp74 Has there been any word or progress on the filter issue?
This issue is fixed with the master branch on GitHub, right? The other bug with the filter is not solved yet, but that #297
I am part of a project which involves scrolling lists of DisplayObjects. I have code that behaves drastically different between 1.1.0 (working) and 1.3.0 (breaking, I believe as of 1.2). Was wondering if you could give me insight into the issue, and how I might be able to resolve it.
Previously (1.1.0), I added a mask to the wrapper, and added the items to the wrapper, adjusting the Y position of the wrapper itself depending on scroll direction. Doing the same thing in 1.3.0 displays differently, and I am unable to adjust the Y positioning of the wrapper content.
It seems to be breaking on relativeToParent, as taking that line
wrapperMask.relativeToParent = true;
out allows me to scroll again, albeit with incorrect mask positioning.Please let me know what I am doing wrong!
Here's a screenshot of the initial load of the page, with the exact same code on each browser window.