Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Notebook output scrolling is not working when output contains images #206226

Closed
galashin opened this issue Feb 26, 2024 · 4 comments
Closed

Notebook output scrolling is not working when output contains images #206226

galashin opened this issue Feb 26, 2024 · 4 comments
Assignees
Labels
feature-request Request for new features or functionality notebook-output

Comments

@galashin
Copy link

Running the following code in an .ipynb notebook results in a long output that is not scrollable, despite me having set "notebook.output.scrolling": true.

import matplotlib.pyplot as plt
import numpy as np

for i in range(10):
    print("this is some text\n" * 10)
    plt.plot(np.linspace(0, 10, 100), np.sin(np.linspace(0, 10, 100)))
    plt.show()

Commenting out the plt.show() line makes it scrollable, as expected.

@rebornix rebornix assigned amunger and unassigned rebornix Mar 12, 2024
@amunger amunger added notebook-output feature-request Request for new features or functionality labels Mar 12, 2024
@vscodenpa vscodenpa added this to the Backlog Candidates milestone Mar 12, 2024
@vscodenpa
Copy link

This feature request is now a candidate for our backlog. The community has 60 days to upvote the issue. If it receives 20 upvotes we will move it to our backlog. If not, we will close it. To learn more about how we handle feature requests, please see our documentation.

Happy Coding!

@amunger
Copy link
Contributor

amunger commented Mar 12, 2024

We currently keep the outputs independent since they each have their own output menu to be able to select the presentation type. Grouping them all in one scrollable region would mean moving logic outside of the individual output renderer and into the workbench - a pretty significant change to make.

@vscodenpa
Copy link

This feature request has not yet received the 20 community upvotes it takes to make to our backlog. 10 days to go. To learn more about how we handle feature requests, please see our documentation.

Happy Coding!

@vscodenpa
Copy link

🙁 In the last 60 days, this feature request has received less than 20 community upvotes and we closed it. Still a big Thank You to you for taking the time to create this issue! To learn more about how we handle feature requests, please see our documentation.

Happy Coding!

@vscodenpa vscodenpa closed this as not planned Won't fix, can't repro, duplicate, stale May 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request Request for new features or functionality notebook-output
Projects
None yet
Development

No branches or pull requests

4 participants