From 72deaa342301a7ef5d84c99f42263a7d54143756 Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Sun, 30 Aug 2020 14:49:56 -0400 Subject: [PATCH] WindowServer: Return correct IsMaximized response --- Services/WindowServer/ClientConnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/WindowServer/ClientConnection.cpp b/Services/WindowServer/ClientConnection.cpp index 1c6937e76f..5f1e13f76b 100644 --- a/Services/WindowServer/ClientConnection.cpp +++ b/Services/WindowServer/ClientConnection.cpp @@ -371,7 +371,7 @@ OwnPtr ClientConnection::handle(con did_misbehave("IsMaximized: Bad window ID"); return nullptr; } - return make(it->value->is_minimized()); + return make(it->value->is_maximized()); } OwnPtr ClientConnection::handle(const Messages::WindowServer::SetWindowIconBitmap& message)