mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-07 11:42:51 +00:00
WindowServer: Make it possible to turn off window title bars (#88)
Also, Launcher now does not use titlebars. Only check if titlebar should be shown if the window type works with that.
This commit is contained in:
parent
cb9134a2ca
commit
957f8b84f2
Notes:
sideshowbarker
2024-07-19 13:57:51 +09:00
Author: https://github.com/alexispurslane
Commit: 957f8b84f2
Pull-request: https://github.com/SerenityOS/serenity/pull/88
Reviewed-by: https://github.com/awesomekling
9 changed files with 54 additions and 11 deletions
|
@ -62,6 +62,7 @@ void GWindow::show()
|
|||
request.window.modal = m_modal;
|
||||
request.window.resizable = m_resizable;
|
||||
request.window.fullscreen = m_fullscreen;
|
||||
request.window.show_titlebar = m_show_titlebar;
|
||||
request.window.opacity = m_opacity_when_windowless;
|
||||
request.window.background_color = m_background_color.value();
|
||||
request.window.size_increment = m_size_increment;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue