Skip to content

Commit

Permalink
Help: disabled parsing error popup
Browse files Browse the repository at this point in the history
See issue #2587 and 5517063 for more details.
Should fix #2874.
  • Loading branch information
Vultraz committed Apr 12, 2018
1 parent 28db261 commit f7ab008
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/help/help.cpp
Expand Up @@ -235,9 +235,12 @@ void show_help(const section &toplevel_sec,
}
}
catch (parse_error& e) {
// Disabled due to issue #2587
#if 0
std::stringstream msg;
msg << _("Parse error when parsing help text: ") << "'" << e.message << "'";
gui2::show_transient_message("", msg.str());
#endif
}
}

Expand Down

0 comments on commit f7ab008

Please sign in to comment.