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
Our code is written with the assumption that onclick and ondblclick events are happening exclusively. Which is not true and they fired together: facebook/react#3185
We should reconsider such handlers. We should be very careful with solving it though, since using timeouts make an event look as not triggered by a user and cause failures for calling DOM apis, in the case if a dbl click event never happens.
It is reproducible by trying to open the file with the dbl click. It will be opened, but you will see there is an additional empty title next to the editor caused by a race condition of opening an editor (dbl click) and editor preview (click) at the same time.
The text was updated successfully, but these errors were encountered:
akosyakov
added
bug
bugs found in the application
tree
issues related to the tree (ex: tree widget)
scm
issues related to the source control manager
labels
Jul 14, 2020
Our code is written with the assumption that
onclick
andondblclick
events are happening exclusively. Which is not true and they fired together: facebook/react#3185We should reconsider such handlers. We should be very careful with solving it though, since using timeouts make an event look as not triggered by a user and cause failures for calling DOM apis, in the case if a dbl click event never happens.
It is reproducible by trying to open the file with the dbl click. It will be opened, but you will see there is an additional empty title next to the editor caused by a race condition of opening an editor (dbl click) and editor preview (click) at the same time.
The text was updated successfully, but these errors were encountered: