Introduction
Introduction Statistics Contact Development Disclaimer Help
tAdapt togglestyle() - surf - customized build of surf, the suckless webkit bro…
git clone git://src.adamsgaard.dk/surf
Log
Files
Refs
README
LICENSE
---
commit d0020bad4fc40f3a84e828936c2588232bb687bf
parent c3a827d621fbedfb974db9d137d3e5bea66490b4
Author: Quentin Rameau <[email protected]>
Date: Sun, 22 Nov 2015 15:31:15 +0100
Adapt togglestyle()
We can't apply an empty stylesheet anymore, instead remove any previous
stylesheet.
Diffstat:
M surf.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/surf.c b/surf.c
t@@ -1368,7 +1368,12 @@ void
togglestyle(Client *c, const Arg *a)
{
enablestyle = !enablestyle;
- setstyle(c, enablestyle ? getstyle(geturi(c)) : "");
+
+ if (enablestyle)
+ setstyle(c, getstyle(geturi(c)));
+ else
+ webkit_user_content_manager_remove_all_style_sheets(
+ webkit_web_view_get_user_content_manager(c->view));
updatetitle(c);
}
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.