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
Some other elements, such as the edit mode selector and the pop-up dialogs (and now on the branch 419-migrate-to-dart-null-safety-mode, the dropdown menus from the top of the screen), automatically get a vertical scrollbar when there is not enough space, due to the css property overflow-y: auto;:
If I try this with the css class context-menu, I see this"
Not only does it not add a vertical scrollbar as needed, it adds an unnecessary horizontal scrollbar. In fact it even adds it when there is lots of space in both directions:
Very confusingly, we needed a vertical scrollbar in the first case and didn't get it, and did not need it in the second case but did get it.
I'd also like to do the same with the menu, e.g., if you click "View" and there's not much vertical space, then a scrollbar should appear. But I have the same problem with the menu: it introduces an unwanted horizontal scrollbar as well, even when it is not needed.
The text was updated successfully, but these errors were encountered:
dave-doty
changed the title
make context menu scrollable when insufficient y space
make menu dropdown and context menu scrollable when insufficient y space
Sep 8, 2024
Some other elements, such as the edit mode selector and the pop-up dialogs (and now on the branch
419-migrate-to-dart-null-safety-mode
, the dropdown menus from the top of the screen), automatically get a vertical scrollbar when there is not enough space, due to the css propertyoverflow-y: auto;
:If I try this with the css class
context-menu
, I see this"Not only does it not add a vertical scrollbar as needed, it adds an unnecessary horizontal scrollbar. In fact it even adds it when there is lots of space in both directions:
Very confusingly, we needed a vertical scrollbar in the first case and didn't get it, and did not need it in the second case but did get it.
I'd also like to do the same with the menu, e.g., if you click "View" and there's not much vertical space, then a scrollbar should appear. But I have the same problem with the menu: it introduces an unwanted horizontal scrollbar as well, even when it is not needed.
The text was updated successfully, but these errors were encountered: