Changeset 172873 in webkit


Ignore:
Timestamp:
Aug 22, 2014 3:09:23 PM (10 years ago)
Author:
Simon Fraser
Message:

Fix showing paint rects when selecting lines in the timeline
https://bugs.webkit.org/show_bug.cgi?id=136173

Reviewed by Joseph Pecoraro.

Fix the condition used to decide when to show the overlay.

  • inspector/InspectorOverlay.cpp:

(WebCore::InspectorOverlay::shouldShowOverlay):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r172872 r172873  
     12014-08-22  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Fix showing paint rects when selecting lines in the timeline
     4        https://bugs.webkit.org/show_bug.cgi?id=136173
     5
     6        Reviewed by Joseph Pecoraro.
     7
     8        Fix the condition used to decide when to show the overlay.
     9
     10        * inspector/InspectorOverlay.cpp:
     11        (WebCore::InspectorOverlay::shouldShowOverlay):
     12
    1132014-08-22  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/inspector/InspectorOverlay.cpp

    r172870 r172873  
    291291bool InspectorOverlay::shouldShowOverlay() const
    292292{
    293     return m_highlightNode || m_highlightNode || m_indicating || m_showingPaintRects || !m_pausedInDebuggerMessage.isNull();
     293    return m_highlightNode || m_highlightQuad || m_indicating || m_showingPaintRects || !m_pausedInDebuggerMessage.isNull();
    294294}
    295295
Note: See TracChangeset for help on using the changeset viewer.