Skip to content
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

Fix for GC Allocations inside TooltipHandler #311

Commits on Apr 8, 2024

  1. Fix for GC Allocations inside TooltipHandler

    In the case where the pointer is not in the chart, both calls to
    ListPool<Serie>.Get() from inside the function UpdateTooltipData
    are executed.
    
    And because the pointer is not in the chart, m_ShowTooltip is set to
    false in the last else clause.
    
    This makes UpdateTooltip to skip all logic and miss the chance to release
    the list back to the pool.
    stefanbursuc committed Apr 8, 2024
    Configuration menu
    Copy the full SHA
    f5a41b5 View commit details
    Browse the repository at this point in the history