summaryrefslogtreecommitdiff
path: root/src/prefs.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2022-02-14 09:22:31 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2022-02-14 09:22:31 +0200
commitcb7a3cf7a47bdcf2366efb06e7e4c056394fcfd3 (patch)
tree7a2835287dacb032d29802936c9203b99e4f967d /src/prefs.c
parent672a534a044d811aa57e927288de50360882ac54 (diff)
Added option for autoshowing images in data URLs
Disabled by default to be consistent with behavior of other links.
Diffstat (limited to 'src/prefs.c')
-rw-r--r--src/prefs.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/prefs.c b/src/prefs.c
index cd86bf60..08355a6a 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -66,11 +66,12 @@ void init_Prefs(iPrefs *d) {
66 d->smoothScrollSpeed[keyboard_ScrollType] = 13; 66 d->smoothScrollSpeed[keyboard_ScrollType] = 13;
67 d->smoothScrollSpeed[mouse_ScrollType] = 13; 67 d->smoothScrollSpeed[mouse_ScrollType] = 13;
68 d->loadImageInsteadOfScrolling = iFalse; 68 d->loadImageInsteadOfScrolling = iFalse;
69 d->collapsePreOnLoad = iFalse; 69 d->openDataUrlImagesOnLoad = iFalse;
70 d->openArchiveIndexPages = iTrue; 70 d->collapsePreOnLoad = iFalse;
71 d->addBookmarksToBottom = iTrue; 71 d->openArchiveIndexPages = iTrue;
72 d->warnAboutMissingGlyphs = iTrue; 72 d->addBookmarksToBottom = iTrue;
73 d->decodeUserVisibleURLs = iTrue; 73 d->warnAboutMissingGlyphs = iTrue;
74 d->decodeUserVisibleURLs = iTrue;
74 d->maxCacheSize = 10; 75 d->maxCacheSize = 10;
75 d->maxMemorySize = 200; 76 d->maxMemorySize = 200;
76 d->maxUrlSize = 8192; 77 d->maxUrlSize = 8192;