-
Notifications
You must be signed in to change notification settings - Fork 32
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
fix: Double clicking a file causes the loader to flash incorrectly #1189
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1189 +/- ##
==========================================
- Coverage 44.20% 44.20% -0.01%
==========================================
Files 448 448
Lines 33432 33439 +7
Branches 8403 8406 +3
==========================================
+ Hits 14780 14781 +1
- Misses 18602 18608 +6
Partials 50 50
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Something I noticed while working on #1189 is that we didn't support double clicking the tab to promote from preview to normal state like VSCode does. This PR lets you double click the tab of a notebook in preview to change it from preview state to normal state. Tested double clicking preview notebook, non-preview notebook, and opening other notebooks in preview after promoting via double click
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't right - if I single-click on foo.py
, it opens as preview, and then I single-click on bar.py
, and it just promotes the existing preview rather than opening bar.py
in the preview.
abe6231
to
3b23043
Compare
Good catch. Think it's all fixed now |
Fixes #942