-
Notifications
You must be signed in to change notification settings - Fork 38
y position of text can be wrong if constructor does not specify text #80
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Put this in my queue. I think it’s probably different than the case you mention. My first thought is that the |
@kevinjwalters thanks for the heads-up on this issue with the I uncovered that the The code should be updated such that There will need to be associated changes with the anything that uses the |
I re-ordered my code as I can easily set the |
This was resolved by the merge PR #81 |
I updated my libraries last night to ones from
adafruit-circuitpython-bundle-5.x-mpy-20200806.zip
. I noticed the performance improvement with moving around text but I also spotted one solitary piece of text that was misplaced slightly off screen.I've just made a simple recreation of this, I think it's when
text
is not specified or it is empty string,y
is set, and thentext
is set. I am using scaled text here.Only
l3
is correctly position,l1
andl2
are half off screen.I see #78 which sounds like it could be in the same area?
Setting to whitespace seems to be a workaround for me, e.g.
text=" "
, and might be able to re-order my code to settext
once in constructor.The text was updated successfully, but these errors were encountered: