aboutsummaryrefslogtreecommitdiff
path: root/src/prefsparser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/prefsparser.cc')
-rw-r--r--src/prefsparser.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/prefsparser.cc b/src/prefsparser.cc
index cf4c50f7..eef93ea1 100644
--- a/src/prefsparser.cc
+++ b/src/prefsparser.cc
@@ -106,7 +106,6 @@ int PrefsParser::parseOption(char *name, char *value)
{ "show_stop", &prefs.show_stop, PREFS_BOOL },
{ "show_tools", &prefs.show_tools, PREFS_BOOL },
{ "show_tooltip", &prefs.show_tooltip, PREFS_BOOL },
- { "show_url", &prefs.show_url, PREFS_BOOL },
{ "small_icons", &prefs.small_icons, PREFS_BOOL },
{ "start_page", &prefs.start_page, PREFS_URL },
{ "theme", &prefs.theme, PREFS_STRING },
@@ -237,9 +236,4 @@ 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;
- }
}