1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:58:11 +00:00

WindowServer: WM_SetActiveWindow should move the window to front as well.

This commit is contained in:
Andreas Kling 2019-04-04 16:38:42 +02:00
parent 64a5abf8db
commit 8f38c01600

View file

@ -532,7 +532,7 @@ void WSClientConnection::handle_request(const WSWMAPISetActiveWindowRequest& req
return;
}
auto& window = *(*it).value;
WSWindowManager::the().set_active_window(&window);
WSWindowManager::the().move_to_front_and_make_active(window);
}
void WSClientConnection::on_request(const WSAPIClientRequest& request)