From c15781f45f0d19a925be7fd73bd10c318562db70 Mon Sep 17 00:00:00 2001 From: Nicolas Roard Date: Wed, 9 Mar 2011 16:08:15 -0800 Subject: Fix for gmail messages not showing after the first one. We were not resetting the unusable state (set by the clearView() function) when receiving new content... bug:4080072 Change-Id: Ie1110b511392b0a7fd21bbc23aa1b824eb8a78ad --- WebCore/platform/graphics/android/BaseTile.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'WebCore/platform') diff --git a/WebCore/platform/graphics/android/BaseTile.cpp b/WebCore/platform/graphics/android/BaseTile.cpp index 47be13b..3da0b3a 100644 --- a/WebCore/platform/graphics/android/BaseTile.cpp +++ b/WebCore/platform/graphics/android/BaseTile.cpp @@ -381,6 +381,9 @@ void BaseTile::paintBitmap() if (!m_currentDirtyArea->isEmpty()) m_dirty = true; + if (!m_dirty) + m_usable = true; + m_painting = false; m_atomicSync.unlock(); -- cgit v1.1