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
Due to the limitation of this feature to stay within the current window, would it be possible to use the OS menu drop-down list to allow getting outside of if? (Adobe Suite seems to use this kind of behaviour)
Making it as a custom option in the settings would be great!
Thanks!
The text was updated successfully, but these errors were encountered:
@silverkorn Electron doesn't allow frameless windows to use the native menu bar. Or more specifically: the menu bar is part of the window frame. I did realise this could pose a problem a while ago, and while attempting to fix it I found out that it wasn't as easy as I first had anticipated: apparently, for some odd reason, CSS doesn't allow
overflow-y: scroll;
overflow-x: visible;
Css automatically reads this as if they were both "scroll". This results in all the menus being encapsulated with a horizontal scrollbar, where you have to scroll right to be able to see nested menus. Setting overflow-x: hidden; makes nested menus completely invisible.
The only solution, I think, is to create a new window through electron. That way menus can be displayed outside of Atom's window. I'll look into that.
Due to the limitation of this feature to stay within the current window, would it be possible to use the OS menu drop-down list to allow getting outside of if? (Adobe Suite seems to use this kind of behaviour)
Making it as a custom option in the settings would be great!
Thanks!
The text was updated successfully, but these errors were encountered: