commit 38cb1632bf9146490b6e006d4a7a54ba251e9283
Author: Quentin Rameau <[email protected]>
AuthorDate: Sun Apr 10 18:44:28 2022 +0200
Commit: Quentin Rameau <[email protected]>
CommitDate: Sun Apr 10 18:50:02 2022 +0200
Fix dark mode parameter application
diff --git a/surf.c b/surf.c
index 696b3a4..010e5e2 100644
--- a/surf.c
+++ b/surf.c
@@ -262,7 +262,6 @@ char *argv0;
static ParamName loadtransient[] = {
Certificate,
CookiePolicies,
- DarkMode,
DiskCache,
DNSPrefetch,
FileURLsCrossAccess,
@@ -278,6 +277,7 @@ static ParamName loadcommitted[] = {
// AccessMicrophone,
// AccessWebcam,
CaretBrowsing,
+ DarkMode,
DefaultCharset,
FontSize,
FrameFlattening,
@@ -1231,6 +1231,8 @@ newview(Client *c, WebKitWebView *rv)
c->context = context;
c->settings = settings;
+ setparameter(c, 0, DarkMode, &curconfig[DarkMode].val);
+
return v;
}