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
I encountered the same issue too. After a bit survey, I think the root cause is that in packages/vscode/src/dailog.ts,Dailog class asks the UI widget to resolve the height of the scroll-able area at the wrong time. When it calls this.entryList.layout() at line 318, path is still empty so the height of the corresponding element is zero. After path is resolved, the element height becomes 28px and the height of the scroll-able area becomes 28px smaller, which is misaligned with the state the UI widget recorded.
One simple solution is to move line 318 to line 393 where path is just assigned. Not sure if there's better way.
code-server
version: running directly from repo, latest pullDescription
The open dialog seems to cut off the filename at the end of the list
Steps to Reproduce
file - open workspace
Screenshot
The text was updated successfully, but these errors were encountered: