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
Ah, it seems that this only happens when I have an image window with a keypress handler. The event is being published globally, and as such, the keypress preventDefault() in the ImagePane was being called even if that event was targeted toward a different pane.
Bug Description
When using a text or number property, upon trying to change the initial value, the event that's fired only contains the old value.
Reproduction Steps
Create a properties window in any environment with a text input i.e.
[
{'type': 'text', 'name': 'Test', 'value': 'Testing...'},
]
Register a callback on that window to print every event.
Try to type another letter at the end of the text box that says 'Testing...'
Observe the 'PropertyUpdate' event that is printed. event['value'] is still 'Testing...'.
Expected behavior
The event['value'] should be 'Testing...<typed letter>'
The text was updated successfully, but these errors were encountered: