comparison mcabber/mcabber/screen.c @ 2211:902f271743b0

Make readline_refresh_screen() re-enable the keypad This is sometimes needed after a Pinentry popup. Thanks to Paul Fertser for the hint.
author Mikael Berthe <mikael@lilotux.net>
date Sun, 25 Oct 2015 14:55:12 +0100
parents ee3a40ffcd8b
children ce1043326bbc
comparison
equal deleted inserted replaced
2210:ea90906cb691 2211:902f271743b0
3751 } 3751 }
3752 3752
3753 void readline_refresh_screen(void) 3753 void readline_refresh_screen(void)
3754 { 3754 {
3755 scr_check_auto_away(TRUE); 3755 scr_check_auto_away(TRUE);
3756 keypad(inputWnd, TRUE);
3756 parse_colors(); 3757 parse_colors();
3757 scr_Resize(); 3758 scr_Resize();
3758 redrawwin(stdscr); 3759 redrawwin(stdscr);
3759 } 3760 }
3760 3761