Title: [264121] trunk/Source/WebCore
Revision
264121
Author
stephan.sz...@sony.com
Date
2020-07-08 11:39:22 -0700 (Wed, 08 Jul 2020)

Log Message

[PlayStation] Build fix after r264050
https://bugs.webkit.org/show_bug.cgi?id=214091

Unreviewed build fix

No new tests, only build fix.


* platform/playstation/ScrollbarThemePlayStation.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (264120 => 264121)


--- trunk/Source/WebCore/ChangeLog	2020-07-08 18:30:44 UTC (rev 264120)
+++ trunk/Source/WebCore/ChangeLog	2020-07-08 18:39:22 UTC (rev 264121)
@@ -1,3 +1,14 @@
+2020-07-08  Stephan Szabo  <stephan.sz...@sony.com>
+
+        [PlayStation] Build fix after r264050
+        https://bugs.webkit.org/show_bug.cgi?id=214091
+
+        Unreviewed build fix
+
+        No new tests, only build fix.
+
+        * platform/playstation/ScrollbarThemePlayStation.cpp:
+
 2020-07-08  Sihui Liu  <sihui_...@appe.com>
 
         Text manipulation should ignore white spaces between nodes

Modified: trunk/Source/WebCore/platform/playstation/ScrollbarThemePlayStation.cpp (264120 => 264121)


--- trunk/Source/WebCore/platform/playstation/ScrollbarThemePlayStation.cpp	2020-07-08 18:30:44 UTC (rev 264120)
+++ trunk/Source/WebCore/platform/playstation/ScrollbarThemePlayStation.cpp	2020-07-08 18:39:22 UTC (rev 264121)
@@ -75,7 +75,7 @@
 
 void ScrollbarThemePlayStation::paintTrackBackground(GraphicsContext& context, Scrollbar& scrollbar, const IntRect& trackRect)
 {
-    context.fillRect(trackRect, scrollbar.enabled() ? Color::lightGray : Color(0xFFE0E0E0));
+    context.fillRect(trackRect, scrollbar.enabled() ? Color::lightGray : Color(makeSimpleColor(0xE0, 0xE0, 0xE0)));
 }
 
 void ScrollbarThemePlayStation::paintThumb(GraphicsContext& context, Scrollbar& scrollbar, const IntRect& thumbRect)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to