Title: [196687] trunk/Source/WebCore
Revision
196687
Author
[email protected]
Date
2016-02-16 22:54:03 -0800 (Tue, 16 Feb 2016)

Log Message

Unreviewed. Enable overlay scrollbars in GTK+ after r196641.

This was blocked by bug #153404, but the commit that introduced
the regression was rolled out in r196641.

* platform/gtk/ScrollbarThemeGtk.cpp:
(WebCore::ScrollbarThemeGtk::ScrollbarThemeGtk):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (196686 => 196687)


--- trunk/Source/WebCore/ChangeLog	2016-02-17 06:13:24 UTC (rev 196686)
+++ trunk/Source/WebCore/ChangeLog	2016-02-17 06:54:03 UTC (rev 196687)
@@ -1,3 +1,13 @@
+2016-02-16  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Enable overlay scrollbars in GTK+ after r196641.
+
+        This was blocked by bug #153404, but the commit that introduced
+        the regression was rolled out in r196641.
+
+        * platform/gtk/ScrollbarThemeGtk.cpp:
+        (WebCore::ScrollbarThemeGtk::ScrollbarThemeGtk):
+
 2016-02-16  Gavin Barraclough  <[email protected]>
 
         JSDOMWindow::getOwnPropertySlot should just call getStaticPropertySlot

Modified: trunk/Source/WebCore/platform/gtk/ScrollbarThemeGtk.cpp (196686 => 196687)


--- trunk/Source/WebCore/platform/gtk/ScrollbarThemeGtk.cpp	2016-02-17 06:13:24 UTC (rev 196686)
+++ trunk/Source/WebCore/platform/gtk/ScrollbarThemeGtk.cpp	2016-02-17 06:54:03 UTC (rev 196687)
@@ -241,9 +241,7 @@
 #if USE(COORDINATED_GRAPHICS_THREADED)
     m_usesOverlayScrollbars = true;
 #else
-    // FIXME: Disable overlay scrollbars by default for now due to bug #153404.
-    // Invert the logic here once bug #153404 is fixed.
-    m_usesOverlayScrollbars = !g_strcmp0(g_getenv("GTK_OVERLAY_SCROLLING"), "1");
+    m_usesOverlayScrollbars = g_strcmp0(g_getenv("GTK_OVERLAY_SCROLLING"), "0");
 #endif
 #endif
     static bool themeMonitorInitialized = false;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to