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
Crash because too many z-layers
This change includes:
- Misuse of unique (didn't resize after)
- Add 4 to the maximum number of layers (epsilon in GlSlider)
- Change the CHECK for ERROR to not have a unnecesary crash
Solve b/172455056.
Add fallback sorting to SamplingReportDataView
SamplingReportDataView used to use stable_sort. stable_sort's outcome
depends on the previous state of the container. Since recent changes
trigger a reconstruction of SamplingReportDataView stable_sort
preserving behaviour doesn't work anymore since the container's previous
state is not preserved. That lead's to reorderings observed by the user.
This can be avoided by establishing a total ordering. In this commit I
use the function address as a unique and totally ordered field.
Test: Manual UI test
Bug: http://b/167541131