From 6af2ce0f7ebb42fa280901887fb943c8060a1ce4 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 28 Feb 2019 13:58:04 +0100 Subject: [PATCH] LibGUI: Re-enable the update rect coalescing. --- LibGUI/GWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GWindow.cpp b/LibGUI/GWindow.cpp index 4e830e9a2c..84458fc503 100644 --- a/LibGUI/GWindow.cpp +++ b/LibGUI/GWindow.cpp @@ -260,7 +260,7 @@ void GWindow::update(const Rect& a_rect) #ifdef UPDATE_COALESCING_DEBUG dbgprintf("Ignoring %s since it's contained by pending rect %s\n", a_rect.to_string().characters(), pending_rect.to_string().characters()); #endif - //return; + return; } } m_pending_paint_event_rects.append(a_rect);