fixes to magiedit

This commit is contained in:
Andrew Pamment 2017-03-30 13:53:08 +10:00
parent ba2597d341
commit f29ed7e0b0

View File

@ -580,18 +580,18 @@ char *message_editor() {
od_set_cursor(position_y - top_of_screen + 3, position_x); od_set_cursor(position_y - top_of_screen + 3, position_x);
od_printf("%s", &line[position_x-1]); od_printf("%s", &line[position_x-1]);
od_clr_line(); od_clr_line();
od_set_cursor(position_y - top_of_screen + 3, position_x + 1);
} else { } else {
od_set_cursor(position_y - top_of_screen + 3, 1); od_set_cursor(position_y - top_of_screen + 3, 1);
od_printf("%s", line); od_printf("%s", line);
od_clr_line(); od_clr_line();
od_set_cursor(position_y - top_of_screen + 3, 1);
} }
for (i=position_y;i<body_line_count && i - top_of_screen < 20;i++) { for (i=position_y;i<body_line_count && i - top_of_screen < 20;i++) {
od_set_cursor(i - top_of_screen + 4, 1); od_set_cursor(i - top_of_screen + 4, 1);
od_printf("%s", body_lines[i]); od_printf("%s", body_lines[i]);
od_clr_line(); od_clr_line();
} }
od_set_cursor(position_y - top_of_screen + 3, position_x + 1);
} }
} else { } else {
if (ch.chKeyPress == '\b') { if (ch.chKeyPress == '\b') {
@ -634,13 +634,12 @@ char *message_editor() {
od_set_cursor(position_y - top_of_screen + 3, position_x); od_set_cursor(position_y - top_of_screen + 3, position_x);
od_printf("%s", &line[position_x-1]); od_printf("%s", &line[position_x-1]);
od_clr_line(); od_clr_line();
od_set_cursor(position_y - top_of_screen + 3, position_x + 1);
} else { } else {
od_set_cursor(position_y - top_of_screen + 3, 1); od_set_cursor(position_y - top_of_screen + 3, 1);
od_printf("%s", line); od_printf("%s", line);
od_clr_line(); od_clr_line();
od_set_cursor(position_y - top_of_screen + 3, 1);
} }
od_set_cursor(position_y - top_of_screen + 3, position_x + 1);
/* /*
if (position_x > 1) { if (position_x > 1) {
if (position_y > 20) { if (position_y > 20) {