diff options
Diffstat (limited to 'src/prefsparser.cc')
-rw-r--r-- | src/prefsparser.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/prefsparser.cc b/src/prefsparser.cc index 6eb8c11d..2a335450 100644 --- a/src/prefsparser.cc +++ b/src/prefsparser.cc @@ -234,4 +234,9 @@ void PrefsParser::parse(FILE *fp) // restore the old numeric locale setlocale(LC_NUMERIC, oldLocale); dFree(oldLocale); + + if (!prefs.show_url) { + MSG_WARN("Reenabling show_url preference (UI requires it currently).\n"); + prefs.show_url = true; + } } |