Changeset 55966 in webkit


Ignore:
Timestamp:
Mar 13, 2010 10:54:12 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-13 Kim Grönholm <kim.gronholm@nomovok.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] GraphicsLayer: Opacity transitions end with begin value
https://bugs.webkit.org/show_bug.cgi?id=36019

  • platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::AnimationQt::updateCurrentTime):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r55962 r55966  
     12010-03-13  Kim Grönholm  <kim.gronholm@nomovok.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] GraphicsLayer: Opacity transitions end with begin value
     6        https://bugs.webkit.org/show_bug.cgi?id=36019
     7
     8        * platform/graphics/qt/GraphicsLayerQt.cpp:
     9        (WebCore::AnimationQt::updateCurrentTime):
     10
    1112010-03-13  Dirk Schulze  <krit@webkit.org>
    212
  • trunk/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp

    r55421 r55966  
    10441044        typename QMap<qreal, KeyframeValueQt<T> >::iterator it2 = it+1;
    10451045        if (it2 == m_keyframeValues.end())
    1046             it2 = m_keyframeValues.begin();
     1046            it2 = it;
    10471047        const KeyframeValueQt<T>& fromKeyframe = it.value();
    10481048        const KeyframeValueQt<T>& toKeyframe = it2.value();
Note: See TracChangeset for help on using the changeset viewer.