diff options
author | corvid <corvid@lavabit.com> | 2009-02-01 16:01:43 -0300 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-02-01 16:01:43 -0300 |
commit | 0e841cb1458e74012ce1a3fadf75b92c67a6e904 (patch) | |
tree | 4a26d1bd4516279d18fcca6f179807dfface0bbe /src | |
parent | 43ec35d529a404ea3ed5bb97d053c6826acd04f9 (diff) |
Added a warning message to the broken limit_text_width pref.
Diffstat (limited to 'src')
-rw-r--r-- | src/prefs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/prefs.c b/src/prefs.c index f40c1a57..177eb7e9 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -244,6 +244,12 @@ static int Prefs_parse_dillorc(void) } dFree(filename); + if (prefs.limit_text_width) { + /* BUG: causes 100% CPU usage with <button> or <input type="image"> */ + MSG_WARN("Disabling limit_text_width preference (currently broken).\n"); + prefs.limit_text_width = FALSE; + } + return ret; } |