mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:37:35 +00:00
WindowServer+LibGUI: Add "frameless" window flag
This allows you to create windows with no title bar or window frame.
This commit is contained in:
parent
bb7eb3e104
commit
d847304cb9
6 changed files with 18 additions and 0 deletions
|
@ -475,6 +475,8 @@ OwnPtr<Messages::WindowServer::CreateWindowResponse> ClientConnection::handle(co
|
|||
window->set_parent_window(*parent_window);
|
||||
}
|
||||
|
||||
window->set_frameless(message.frameless());
|
||||
|
||||
window->set_has_alpha_channel(message.has_alpha_channel());
|
||||
window->set_title(message.title());
|
||||
if (!message.fullscreen()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue