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
There's an issue with scroll_to_center that can be seen in the scroll_to_center.py snapshot.
Essentially it doesn't seem to scroll the inner-most container the first time, but does on the second time.
I did some debugging, and it appears that max_scroll_x and max_scroll_y are erroneously reporting zero, until the container becomes visible for the first time, then they have the correct values. The root cause seems to be that the virtual_size is the same as size, which is incorrect.
When fixing this, be careful not to break textual colors. If you click the last button it should scroll to the end.
This issue likely does touch on the compositor. I suspect it is something related to the _full_map structure.
The text was updated successfully, but these errors were encountered:
There's an issue with
scroll_to_center
that can be seen in thescroll_to_center.py
snapshot.Essentially it doesn't seem to scroll the inner-most container the first time, but does on the second time.
I did some debugging, and it appears that
max_scroll_x
andmax_scroll_y
are erroneously reporting zero, until the container becomes visible for the first time, then they have the correct values. The root cause seems to be that thevirtual_size
is the same assize
, which is incorrect.When fixing this, be careful not to break
textual colors
. If you click the last button it should scroll to the end.This issue likely does touch on the compositor. I suspect it is something related to the
_full_map
structure.The text was updated successfully, but these errors were encountered: