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

Not working in new Atom v1.6 update #38

Open
luckyshot opened this issue Mar 18, 2016 · 3 comments
Open

Not working in new Atom v1.6 update #38

luckyshot opened this issue Mar 18, 2016 · 3 comments

Comments

@luckyshot
Copy link

The Pane doesn't load open tabs anymore in the new Atom v1.6 update

@luckyshot
Copy link
Author

Commenting this CSS property solved the issue for me:

.tree-view-open-files { /* overflow: auto; */ }

@MadLittleMods
Copy link

MadLittleMods commented Apr 15, 2016

Seems to be working in Atom 1.6.2 and shows a few files.

This fix works great for showing all of them (will cut-off if you have more open tabs than vertical space on your screen for your tree-view). Inspired by bloopletech/config@33431df, could be more releated to #33

.tree-view-open-files {
  overflow: visible !important;
  max-height: 30vh !important;

  transition: max-height 0.2s ease;

  &:hover {
    max-height: 100vh !important;
  }
 }

@sergiu-gordienco
Copy link

@Try this, fixed for atom 1.18.0 https://github.com/sergiu-gordienco/tree-view-open-files

on atom is tree-view-open-files-updated

apm install tree-view-open-files-updated

https://atom.io/packages/tree-view-open-files-updated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants