From a8ea5993729f5c1efbd4096e26ad4e4aac93769d Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 16 Mar 2019 11:57:31 +1100 Subject: [PATCH] Remove another unnecessary ; in palete reset escape sequence Should fix #2779 for real. --- src/ncurses_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ncurses_ui.cc b/src/ncurses_ui.cc index 9d83cb51..32cfea57 100644 --- a/src/ncurses_ui.cc +++ b/src/ncurses_ui.cc @@ -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;