mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
WindowServer: Return correct IsMaximized response
This commit is contained in:
parent
4b5cfce6b1
commit
72deaa3423
Notes:
sideshowbarker
2024-07-19 02:58:42 +09:00
Author: https://github.com/thankyouverycool Commit: https://github.com/SerenityOS/serenity/commit/72deaa34230 Pull-request: https://github.com/SerenityOS/serenity/pull/3358 Reviewed-by: https://github.com/awesomekling ✅
1 changed files with 1 additions and 1 deletions
|
@ -371,7 +371,7 @@ OwnPtr<Messages::WindowServer::IsMaximizedResponse> ClientConnection::handle(con
|
|||
did_misbehave("IsMaximized: Bad window ID");
|
||||
return nullptr;
|
||||
}
|
||||
return make<Messages::WindowServer::IsMaximizedResponse>(it->value->is_minimized());
|
||||
return make<Messages::WindowServer::IsMaximizedResponse>(it->value->is_maximized());
|
||||
}
|
||||
|
||||
OwnPtr<Messages::WindowServer::SetWindowIconBitmapResponse> ClientConnection::handle(const Messages::WindowServer::SetWindowIconBitmap& message)
|
||||
|
|
Loading…
Reference in a new issue