Title: [174812] trunk
Revision
174812
Author
[email protected]
Date
2014-10-16 23:31:20 -0700 (Thu, 16 Oct 2014)

Log Message

REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
https://bugs.webkit.org/show_bug.cgi?id=137781

Reviewed by Martin Robinson.

We used to enable smooth scrolling unconditionally in autotools
(via WebKitFeatures.m4), but since the switch to CMake it's
unconditionally disabled, so changing the setting doesn't have any
effect.

* Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.

Modified Paths

Diff

Modified: trunk/ChangeLog (174811 => 174812)


--- trunk/ChangeLog	2014-10-17 05:34:47 UTC (rev 174811)
+++ trunk/ChangeLog	2014-10-17 06:31:20 UTC (rev 174812)
@@ -1,3 +1,17 @@
+2014-10-16  Carlos Garcia Campos  <[email protected]>
+
+        REGRESSION(CMake): [GTK] WebKitSettings:enable-smooth-scrolling does nothing
+        https://bugs.webkit.org/show_bug.cgi?id=137781
+
+        Reviewed by Martin Robinson.
+
+        We used to enable smooth scrolling unconditionally in autotools
+        (via WebKitFeatures.m4), but since the switch to CMake it's
+        unconditionally disabled, so changing the setting doesn't have any
+        effect.
+
+        * Source/cmake/OptionsGTK.cmake: Enable smooth scrolling.
+
 2014-10-16  Pascal Jacquemart  <[email protected]>
 
         Removing CUSTOM_PROTOCOLS guard

Modified: trunk/Source/cmake/OptionsGTK.cmake (174811 => 174812)


--- trunk/Source/cmake/OptionsGTK.cmake	2014-10-17 05:34:47 UTC (rev 174811)
+++ trunk/Source/cmake/OptionsGTK.cmake	2014-10-17 06:31:20 UTC (rev 174812)
@@ -179,6 +179,7 @@
 set(ENABLE_WEBKIT OFF)
 set(ENABLE_WEBKIT2 ON)
 set(ENABLE_PLUGIN_PROCESS ON)
+set(ENABLE_SMOOTH_SCROLLING ON)
 
 set(GDK_VERSION_MIN_REQUIRED GDK_VERSION_3_6)
 set(GTK_API_VERSION 3.0)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to