aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-01-24 08:24:31 +0100
committerache <ache@ache.one>2019-01-24 08:24:31 +0100
commit914d00155ebbf64b9f07e6427980fd62c39dea7c (patch)
tree6011087c381bf1716dc45aaf186a2167ad4cb172
parentSet selected contact (diff)
readline include
-rw-r--r--wind.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/wind.c b/wind.c
index 6199e3e..2c42d60 100644
--- a/wind.c
+++ b/wind.c
@@ -13,7 +13,7 @@ extern int w_WMessage,h_WMessage;
static short my_fg = COLOR_WHITE;
static short my_bg = COLOR_BLACK;
//extern char status[10];
-//extern WINDOW *cmd_win;
+extern WINDOW *cmd_win;
//extern WINDOW *sep_win;
void resize() {
@@ -32,7 +32,9 @@ void resize() {
vline(ACS_VLINE, h_menuContact);
showMessageWind();
- move(1,COLS/2);
+ cmd_win_redisplay(true);
+ CHECK(doupdate);
+ move(LINES-1, 1);
}
int confirmSend(char* txt, char* autheur) {
int x = COLS/6;