mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-07 11:48:52 +00:00
WindowServer+LibGUI: Implement minimizable property to windows
This commit is contained in:
committed by
Andreas Kling
parent
a641f4d213
commit
eab34a7de3
@@ -394,7 +394,7 @@ OwnPtr<WindowServer::GetClipboardContentsResponse> WSClientConnection::handle(co
|
||||
OwnPtr<WindowServer::CreateWindowResponse> WSClientConnection::handle(const WindowServer::CreateWindow& message)
|
||||
{
|
||||
int window_id = m_next_window_id++;
|
||||
auto window = WSWindow::construct(*this, (WSWindowType)message.type(), window_id, message.modal(), message.resizable(), message.fullscreen());
|
||||
auto window = WSWindow::construct(*this, (WSWindowType)message.type(), window_id, message.modal(), message.minimizable(), message.resizable(), message.fullscreen());
|
||||
window->set_has_alpha_channel(message.has_alpha_channel());
|
||||
window->set_title(message.title());
|
||||
if (!message.fullscreen())
|
||||
|
||||
Reference in New Issue
Block a user