-
Notifications
You must be signed in to change notification settings - Fork 278
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
[Bug] changing --tab-size breaks tab drag #3519
Comments
Thanks, the commit bd24eb6 should fix this. Here is a workaround user style sheet: #dummy-tabs tab-item {
height: var(--tab-size);
} |
Updated: I've introduced more changes around tab size calculation priority. The workaround in my previous comment need to be removed after a new release containing those changes is released. |
This issue has been closed due to no response within 14 days after labeled as "fixed", 7 days after last reopened, and 7 days after last commented. |
Abstract
Steps to reproduce
Expected result
The size is changed and all other functions work fine.
Actual result
The size is changed but when you try to drag one tab to another you cannot create a new subtree. So if target tab does not have children the source tab cannot become the child of target tab.
Also even if target tab already has children it's become impossible to move the tab to the end of it's child list. It's possible to move to any other position though so you can move source tab to the position before last child and then swap last 2 children but it's not convenient.
It worked fine before last big update.
Environment
Possible fast way to fix
Add "tab-size" option to add-on settings. It probably will fix the bug (because the value in Javascript will match the css value) and it also will be convenient for users.
The text was updated successfully, but these errors were encountered: