Changeset 83689 in webkit


Ignore:
Timestamp:
Apr 12, 2011 7:43:14 PM (13 years ago)
Author:
diegohcg@webkit.org
Message:

2011-04-12 Diego Gonzalez <diegohcg@webkit.org>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Do not show scrollbars when use mobile theme
https://bugs.webkit.org/show_bug.cgi?id=58380

  • platform/qt/ScrollbarThemeQt.cpp: (WebCore::ScrollbarThemeQt::scrollbarThickness):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r83688 r83689  
     12011-04-12  Diego Gonzalez  <diegohcg@webkit.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Do not show scrollbars when use mobile theme
     6        https://bugs.webkit.org/show_bug.cgi?id=58380
     7
     8        * platform/qt/ScrollbarThemeQt.cpp:
     9        (WebCore::ScrollbarThemeQt::scrollbarThickness):
     10
    1112011-04-12  Anantanarayanan G Iyengar  <ananta@chromium.org>
    212
  • trunk/Source/WebCore/platform/qt/ScrollbarThemeQt.cpp

    r83160 r83689  
    195195int ScrollbarThemeQt::scrollbarThickness(ScrollbarControlSize controlSize)
    196196{
     197#if USE(QT_MOBILE_THEME)
     198    return 0;
     199#endif
    197200    QStyleOptionSlider o;
    198201    o.orientation = Qt::Vertical;
Note: See TracChangeset for help on using the changeset viewer.