diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-28 13:58:04 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-28 13:58:04 +0100 |
commit | 6af2ce0f7ebb42fa280901887fb943c8060a1ce4 (patch) | |
tree | 853c1771d6807477166a3c893d5f6447f0db8c94 /LibGUI/GWindow.cpp | |
parent | 7eb42b5ffb2f6859da9abc350fd50bd105828647 (diff) | |
download | serenity-6af2ce0f7ebb42fa280901887fb943c8060a1ce4.zip |
LibGUI: Re-enable the update rect coalescing.
Diffstat (limited to 'LibGUI/GWindow.cpp')
-rw-r--r-- | LibGUI/GWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |