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

Image plot fixes #3166

Merged
merged 5 commits into from
Oct 14, 2024
Merged

Image plot fixes #3166

merged 5 commits into from
Oct 14, 2024

Commits on Oct 11, 2024

  1. Image widget: Fix VImage handling

    When 'limits from PV' was used with a VImage (from PVA NTNDArray), the
    image axes would update to the size of the image whenever the PV sent a
    new value. But when the PV stayed constant and one would then perform
    operations that require a layout, like show/hide the toolbar, the image
    would be redrawn with the range from the model.
    The display would thus show the wrong axes range until the PV sent
    another update.
    
    Now the model axes are updated from the VImage, so the display sticks to
    the most recently received range from the VImage.
    kasemir committed Oct 11, 2024
    Configuration menu
    Copy the full SHA
    6f5e1de View commit details
    Browse the repository at this point in the history
  2. Remove unused imports

    kasemir committed Oct 11, 2024
    Configuration menu
    Copy the full SHA
    470cb81 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2024

  1. Image plot: Fix response to toolbar show/hide

    The image location on the screen used the old "dst_...". Now we compute
    the new layout and then "dst_.." values from the updated layout.
    kasemir committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    837ad40 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c72c19e View commit details
    Browse the repository at this point in the history
  3. typo

    kasemir committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    869ddc7 View commit details
    Browse the repository at this point in the history