-
Notifications
You must be signed in to change notification settings - Fork 74
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
state of CornerstoneViewport does not update #117
Comments
Any updates on this or a direction to look in? I'm having the same issue. |
The current version of the Viewer does not support updates of |
… changed. Call executes on every update and updates the state of all provided tools. This allows to turn tools ON/OFF without initializing entire `CornerstoneViewport` component. Resolves cornerstonejs#117
If the state is updated (tools or imageIds) from the parent object, React does not re-render the CornerstoneViewport component to reflect the changes.
A common use case is to use the Pan tool and Length tool with both bound to the left mouse button. This can be achieved with a toggle button that updates the state by making Pan Tool's status be
passive
and Length Tool's status to beactive
. Currently, this is not possible as the state of CornerstoneViewport does not gets updated.This can be reproduced at https://react.cornerstonejs.org/basic
Change the state of
ExamplePageBasic
using the React Developer Tools in Chrome.The text was updated successfully, but these errors were encountered: