Have a lib-ui/lib-ui.h
[apps/madmutt.git] / lib-sys / mutt_signal.c
index f8e0dba..ea86e3b 100644 (file)
@@ -9,7 +9,7 @@
 
 #include <lib-lib/lib-lib.h>
 
-#include <lib-ui/curses.h>
+#include <lib-ui/lib-ui.h>
 
 #include "mutt_signal.h"
 
@@ -49,7 +49,7 @@ static void sighandler (int sig)
 
   case SIGCONT:
     if (!IsEndwin)
-      refresh ();
+      wrefresh (stdscr);
     mutt_curs_set (-1);
     /* We don't receive SIGWINCH when suspended; however, no harm is done by
      * just assuming we received one, and triggering the 'resize' anyway. */
@@ -60,7 +60,6 @@ static void sighandler (int sig)
   case SIGINT:
     SigInt = 1;
     break;
-
   }
   errno = save_errno;
 }