summaryrefslogtreecommitdiff
path: root/src/prefs.c
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2021-01-10 19:20:09 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2021-01-10 19:21:05 +0200
commit209b1d96b0c5c63ee78601938a32eaa9fa52512e (patch)
tree9597d8ab54d3029096b88cff2a5379d29668499b /src/prefs.c
parent5472891b5711138d3c54bd90508720a935c36de7 (diff)
Option to show full URL when hovering on a link
The URL is shown in the bottom of the page. IssueID #64
Diffstat (limited to 'src/prefs.c')
-rw-r--r--src/prefs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs.c b/src/prefs.c
index 31ffe03b..188938a2 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -30,7 +30,7 @@ void init_Prefs(iPrefs *d) {
30 d->uiScale = 1.0f; /* default set elsewhere */ 30 d->uiScale = 1.0f; /* default set elsewhere */
31 d->zoomPercent = 100; 31 d->zoomPercent = 100;
32 d->sideIcon = iTrue; 32 d->sideIcon = iTrue;
33 d->hoverOutline = iFalse; 33 d->hoverLink = iTrue;
34 d->smoothScrolling = iTrue; 34 d->smoothScrolling = iTrue;
35 d->loadImageInsteadOfScrolling = iFalse; 35 d->loadImageInsteadOfScrolling = iFalse;
36 d->decodeUserVisibleURLs = iTrue; 36 d->decodeUserVisibleURLs = iTrue;