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
bugbugs found in the applicationcoreissues related to the core of the applicationdebugissues that related to debug functionalityui/uxissues related to user interface / user experience
In #11444, ignoreFocusOut was added to the options for the workspace selection quick pick for adding debug configurations. That produces a bad UX because no other quickpicks inside the application ignore focus out.
The code was added to address a bug that was present prior to that change: clicking 'Add Configuration' in the DebugConfigurationSelect would open and then immediately close the quick pick. That is a problem with the ReactSelectComponent - because it removes the cotainer for rendering options, it triggers a blur event with relatedTarget: null. The problem should be addressed there rather than worked around in the debug package.
Steps to Reproduce:
Open a multi-root workspace.
Open the debug view and use the dropdown to select 'Add Configuration'
See a quickpick.
Try to get out of the quick pick by focusing other elements.
Observe that the quick pick remains.
Remove the ignoreFocusOut: true from the options in the DebugConfigurationManager
Follow steps 1-2 above.
Observe that the quickpick appears and then immediately disappears.
The text was updated successfully, but these errors were encountered:
colin-grant-work
added
debug
issues that related to debug functionality
core
issues related to the core of the application
ui/ux
issues related to user interface / user experience
bug
bugs found in the application
labels
Dec 13, 2022
bugbugs found in the applicationcoreissues related to the core of the applicationdebugissues that related to debug functionalityui/uxissues related to user interface / user experience
Bug Description:
In #11444,
ignoreFocusOut
was added to the options for the workspace selection quick pick for adding debug configurations. That produces a bad UX because no other quickpicks inside the application ignore focus out.The code was added to address a bug that was present prior to that change: clicking 'Add Configuration' in the
DebugConfigurationSelect
would open and then immediately close the quick pick. That is a problem with theReactSelectComponent
- because it removes the cotainer for rendering options, it triggers a blur event withrelatedTarget: null
. The problem should be addressed there rather than worked around in thedebug
package.Steps to Reproduce:
ignoreFocusOut: true
from the options in theDebugConfigurationManager
Additional Information
The text was updated successfully, but these errors were encountered: