Help: disabled parsing error popup

See issue #2587 and 5517063fb9 for more details.
Should fix #2874.
This commit is contained in:
Charles Dang 2018-04-12 12:16:09 +11:00
parent 28db261ebd
commit f7ab008c59

View file

@ -235,9 +235,12 @@ void show_help(const section &toplevel_sec,
} }
} }
catch (parse_error& e) { catch (parse_error& e) {
// Disabled due to issue #2587
#if 0
std::stringstream msg; std::stringstream msg;
msg << _("Parse error when parsing help text: ") << "'" << e.message << "'"; msg << _("Parse error when parsing help text: ") << "'" << e.message << "'";
gui2::show_transient_message("", msg.str()); gui2::show_transient_message("", msg.str());
#endif
} }
} }