mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
WindowServer: Remove debug spam about activating non-normal windows.
This commit is contained in:
parent
02e5d55832
commit
f520d87097
1 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue