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

[DrawablePainter] Fix reacting to intrinsic size changes #1124

Merged
merged 8 commits into from Jun 28, 2022

Commits on Apr 8, 2022

  1. Fix DrawablePainter not reacting to intrinsic size changes

    Currently DrawablePainter has an `invalidateTick` which triggers a draw pass, but there is nothing to trigger a layout pass. This PR adds another tick for layout, which is triggered when the intrinsic size changes.
    chrisbanes committed Apr 8, 2022
    Copy the full SHA
    e46d8d3 View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2022

  1. Rename tick properties

    chrisbanes committed Apr 12, 2022
    Copy the full SHA
    66e6043 View commit details
    Browse the repository at this point in the history
  2. Fix spotless

    chrisbanes committed Apr 12, 2022
    Copy the full SHA
    f681dac View commit details
    Browse the repository at this point in the history
  3. Fix property rename

    That will teach me for trying to do this via the web editor
    chrisbanes committed Apr 12, 2022
    Copy the full SHA
    72942a1 View commit details
    Browse the repository at this point in the history

Commits on Jun 14, 2022

  1. Copy the full SHA
    8134226 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2022

  1. Move away from using a tick for size changes

    We now just rely on the Drawable notifying the painter from
    invalidateDrawable()
    chrisbanes authored and Chris Banes committed Jun 28, 2022
    Copy the full SHA
    6d7332d View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    8a62963 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    a2fde10 View commit details
    Browse the repository at this point in the history