commit a1328457cff30dc678a1b8e80dc44ddb73ce293c
Author: Quentin Rameau <[email protected]>
AuthorDate: Thu May 18 16:42:59 2017 +0200
Commit: Quentin Rameau <[email protected]>
CommitDate: Mon May 22 12:38:49 2017 +0200
Unset previous user styles before applying another one
diff --git a/surf.c b/surf.c
index 694eff8..51c1813 100644
--- a/surf.c
+++ b/surf.c
@@ -782,11 +782,10 @@ setparameter(Client *c, int refresh, ParamName p, const
Arg *a)
WEBKIT_TLS_ERRORS_POLICY_IGNORE);
break;
case Style:
+ webkit_user_content_manager_remove_all_style_sheets(
+ webkit_web_view_get_user_content_manager(c->view));
if (a->b)
setstyle(c, getstyle(geturi(c)));
- else
- webkit_user_content_manager_remove_all_style_sheets(
- webkit_web_view_get_user_content_manager(c->view));
refresh = 0;
break;
case ZoomLevel: