[hackers] [surf] Add config option for smooth scrolling activation || Quentin Rameau

From: <git_AT_suckless.org>
Date: Thu, 11 May 2017 16:33:12 +0200 (CEST)

commit 4a1876eb80dca2c2a3636a7d3af55a34916bb03e
Author: Quentin Rameau <quinq_AT_fifth.space>
AuthorDate: Thu May 11 15:33:42 2017 +0200
Commit: Quentin Rameau <quinq_AT_fifth.space>
CommitDate: Thu May 11 15:33:42 2017 +0200

    Add config option for smooth scrolling activation

diff --git a/config.def.h b/config.def.h
index 44f4584..50dd739 100644
--- a/config.def.h
+++ b/config.def.h
_AT_@ -32,6 +32,7 @@ static Parameter defconfig[ParameterLast] = {
         SETB(ScrollBars, 1),
         SETB(ShowIndicators, 1),
         SETB(SiteQuirks, 1),
+ SETB(SmoothScrolling, 0),
         SETB(SpellChecking, 0),
         SETV(SpellLanguages, ((char *[]){ "en_US", NULL })),
         SETB(StrictTLS, 1),
diff --git a/surf.c b/surf.c
index fb104e9..2003b79 100644
--- a/surf.c
+++ b/surf.c
_AT_@ -83,6 +83,7 @@ typedef enum {
         ScrollBars,
         ShowIndicators,
         SiteQuirks,
+ SmoothScrolling,
         SpellChecking,
         SpellLanguages,
         StrictTLS,
_AT_@ -750,6 +751,9 @@ setparameter(Client *c, int refresh, ParamName p, const Arg *a)
                 return; /* do not update */
         case ShowIndicators:
                 break;
+ case SmoothScrolling:
+ webkit_settings_set_enable_smooth_scrolling(s, a->b);
+ return; /* do not update */
         case SiteQuirks:
                 webkit_settings_set_enable_site_specific_quirks(s, a->b);
                 break;
_AT_@ -1029,6 +1033,7 @@ newview(Client *c, WebKitWebView *rv)
                    "enable-plugins", curconfig[Plugins].val.b,
                    "enable-accelerated-2d-canvas", curconfig[AcceleratedCanvas].val.b,
                    "enable-site-specific-quirks", curconfig[SiteQuirks].val.b,
+ "enable-smooth-scrolling", curconfig[SmoothScrolling].val.b,
                    "media-playback-requires-user-gesture", curconfig[MediaManualPlay].val.b,
                    NULL);
 /* For more interesting settings, have a look at
Received on Thu May 11 2017 - 16:33:12 CEST

This archive was generated by hypermail 2.3.0 : Thu May 11 2017 - 16:36:35 CEST