diff options
Diffstat (limited to 'src/prefs.c')
-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; } |