Remove another unnecessary ; in palete reset escape sequence

Should fix #2779 for real.
This commit is contained in:
Maxime Coste 2019-03-16 11:57:31 +11:00
parent a8347ed78b
commit a8ea599372

View File

@ -1252,7 +1252,7 @@ void NCursesUI::set_ui_options(const Options& options)
if (can_change_color() and m_change_colors != value)
{
fputs("\033]104;\007", stdout); // try to reset palette
fputs("\033]104\007", stdout); // try to reset palette
fflush(stdout);
m_colorpairs.clear();
m_colors = default_colors;