Hey, my feature request is have the option to have the panel floating on top of windows.
I thought it might be a cool feature that could be part of Open Panel. It fits perfectly to Islands and Trilands in my opinion.
basically it is to set
Main.layoutManager.panelBox.height = 2;
(everyone reading this, you can try that with Alt+F2-> lg-> paste the code).
panelBox basically only reserves space from your screen no matter how big the panel actually is.
this leaves a 2 pixel gap on the top of the screen. Unfortunately the panel hides behind windows if you set the value to 0;
Its also possible to put the gap at the bottom of the screen:
Main.layoutManager.panelBox.y = global.screen_height - 2; Main.panel.translation_y = - global.screen_height + 2;
If you have more questions, i played around with it a lot, just ask.
Hey, my feature request is have the option to have the panel floating on top of windows.
I thought it might be a cool feature that could be part of Open Panel. It fits perfectly to Islands and Trilands in my opinion.
basically it is to set
(everyone reading this, you can try that with Alt+F2->
lg-> paste the code).panelBox basically only reserves space from your screen no matter how big the panel actually is.
this leaves a 2 pixel gap on the top of the screen. Unfortunately the panel hides behind windows if you set the value to 0;
Its also possible to put the gap at the bottom of the screen:
If you have more questions, i played around with it a lot, just ask.