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

WindowServer: Remove debug spam when creating new windows

This commit is contained in:
Andreas Kling 2020-05-03 14:18:05 +02:00
parent da837fe46e
commit 82d83f0fe1

View file

@ -464,8 +464,6 @@ OwnPtr<Messages::WindowServer::CreateWindowResponse> ClientConnection::handle(co
int window_id = m_next_window_id++;
auto window = Window::construct(*this, (WindowType)message.type(), window_id, message.modal(), message.minimizable(), message.frameless(), message.resizable(), message.fullscreen());
dbg() << "Constructing window with parent_window_id=" << message.parent_window_id();
if (message.parent_window_id()) {
auto* parent_window = window_from_id(message.parent_window_id());
if (!parent_window) {