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
For Positron in the Web, the wheel event is listened to in order to drop the event. This prevents users from using gestures to navigate to another URL. This causes problems with Positron UI components where scrolling doesn't work.
Wrapping our components in a Scrollable can get around this problem. It uses VS Code's scrollable code, which handles the wheel event and allows scrolling. This does have limitations where the Scrollable does need to know the width & height as well as scroll width & height but will probably be fine.
The Console and interpreter dropdown already have this fixed with a workaround. The Plots view already uses a Scrollable. Anything that uses PositronModalPopup might be fine since it has the workaround but it does not guarantee child components can scroll.
Any of the views likely need a fix if their contents require scrolling. For example, fhe Variables view currently does not scroll in web.
The text was updated successfully, but these errors were encountered:
For Positron in the Web, the wheel event is listened to in order to drop the event. This prevents users from using gestures to navigate to another URL. This causes problems with Positron UI components where scrolling doesn't work.
Wrapping our components in a Scrollable can get around this problem. It uses VS Code's scrollable code, which handles the wheel event and allows scrolling. This does have limitations where the Scrollable does need to know the width & height as well as scroll width & height but will probably be fine.
The Console and interpreter dropdown already have this fixed with a workaround. The Plots view already uses a Scrollable. Anything that uses PositronModalPopup might be fine since it has the workaround but it does not guarantee child components can scroll.
Any of the views likely need a fix if their contents require scrolling. For example, fhe Variables view currently does not scroll in web.
The text was updated successfully, but these errors were encountered: