Changeset 70049 in webkit


Ignore:
Timestamp:
Oct 19, 2010 5:44:24 AM (14 years ago)
Author:
andreas.kling@nokia.com
Message:

2010-10-19 Andreas Kling <kling@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Correct initial state of ImageBuffer QPen
https://bugs.webkit.org/show_bug.cgi?id=47804

Have the QPen on ImageBuffers start in Qt::SvgMiterJoin mode.

  • platform/graphics/qt/ImageBufferQt.cpp: (WebCore::ImageBufferData::ImageBufferData):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70048 r70049  
     12010-10-19  Andreas Kling  <kling@webkit.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Correct initial state of ImageBuffer QPen
     6        https://bugs.webkit.org/show_bug.cgi?id=47804
     7
     8        Have the QPen on ImageBuffers start in Qt::SvgMiterJoin mode.
     9
     10        * platform/graphics/qt/ImageBufferQt.cpp:
     11        (WebCore::ImageBufferData::ImageBufferData):
     12
    1132010-10-19  Philippe Normand  <pnormand@igalia.com>
    214
  • trunk/WebCore/platform/graphics/qt/ImageBufferQt.cpp

    r69798 r70049  
    7070    pen.setWidth(1);
    7171    pen.setCapStyle(Qt::FlatCap);
    72     pen.setJoinStyle(Qt::MiterJoin);
     72    pen.setJoinStyle(Qt::SvgMiterJoin);
    7373    pen.setMiterLimit(10);
    7474    painter->setPen(pen);
Note: See TracChangeset for help on using the changeset viewer.