diff options
author | portix <none@none> | 2012-07-08 19:34:00 +0200 |
---|---|---|
committer | portix <none@none> | 2012-07-08 19:34:00 +0200 |
commit | 870d70e7dadd93b088133b3219e3b0e478042a24 (patch) | |
tree | 758cc93e9007202316e41485d46000cc93daa017 /src | |
parent | 95f7a862f1a849de30996f60166f8e4ad8f95d10 (diff) | |
download | dwb-870d70e7dadd93b088133b3219e3b0e478042a24.zip |
Set SETTING_ONINIT flag on do-not-track setting
Diffstat (limited to 'src')
-rw-r--r-- | src/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h index d24c988d..a18a6785 100644 --- a/src/config.h +++ b/src/config.h @@ -967,7 +967,7 @@ static WebSettings DWB_SETTINGS[] = { SETTING_GLOBAL | SETTING_ONINIT, DOUBLE, { .d = 0 }, (S_Func) dwb_set_scroll_step, { 0 }, }, { { "do-not-track", "Whether to add do not track flag to request headers", }, - SETTING_GLOBAL, BOOLEAN, { .b = true }, (S_Func) dwb_set_do_not_track, { 0 }, }, + SETTING_GLOBAL | SETTING_ONINIT, BOOLEAN, { .b = true }, (S_Func) dwb_set_do_not_track, { 0 }, }, { { "foreground-color", "Foreground color of the active tab", }, SETTING_GLOBAL, COLOR_CHAR, { .p = "#ffffff" }, (S_Func) dwb_reload_layout, { 0 }, }, |