WindowServer: Remove debug spam about activating non-normal windows.

This commit is contained in:
Andreas Kling 2019-04-23 20:46:10 +02:00
parent 02e5d55832
commit f520d87097

View file

@ -1003,10 +1003,8 @@ void WSWindowManager::set_active_window(WSWindow* window)
if (window && window->is_blocked_by_modal_window())
return;
if (window->type() != WSWindowType::Normal) {
dbgprintf("WSWindowManager: Attempted to make a non-normal window active.\n");
if (window->type() != WSWindowType::Normal)
return;
}
if (window == m_active_window)
return;