Changeset 74316 in webkit


Ignore:
Timestamp:
Dec 18, 2010 9:41:05 AM (13 years ago)
Author:
ariya@webkit.org
Message:

2010-12-18 Ariya Hidayat <ariya@sencha.com>

Reviewed by Andreas Kling.

[Qt] TransparencyLayer should inherit its container render hints
https://bugs.webkit.org/show_bug.cgi?id=51283

  • platform/graphics/qt/TransparencyLayer.h: (WebCore::TransparencyLayer::TransparencyLayer):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r74315 r74316  
     12010-12-18  Ariya Hidayat  <ariya@sencha.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Qt] TransparencyLayer should inherit its container render hints
     6        https://bugs.webkit.org/show_bug.cgi?id=51283
     7
     8        * platform/graphics/qt/TransparencyLayer.h:
     9        (WebCore::TransparencyLayer::TransparencyLayer):
     10
    1112010-12-18  Tony Gentilcore  <tonyg@chromium.org>
    212
  • trunk/WebCore/platform/graphics/qt/TransparencyLayer.h

    r67780 r74316  
    5353        pixmap.fill(Qt::transparent);
    5454        painter.begin(&pixmap);
    55         painter.setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform);
     55        painter.setRenderHints(p->renderHints());
    5656        painter.translate(-offset);
    5757        painter.setPen(p->pen());
Note: See TracChangeset for help on using the changeset viewer.