Try and fix magiedit
This commit is contained in:
parent
2406b71719
commit
f2f5f399f1
@ -414,9 +414,9 @@ char *message_editor() {
|
|||||||
od_printf("%s", line);
|
od_printf("%s", line);
|
||||||
od_clr_line();
|
od_clr_line();
|
||||||
|
|
||||||
i = position_y + 1;
|
i = position_y;
|
||||||
|
|
||||||
if (position_y + 1 <= body_line_count) {
|
if (position_y <= body_line_count) {
|
||||||
for (; i< body_line_count && i < top_of_screen + 17;i++) {
|
for (; i< body_line_count && i < top_of_screen + 17;i++) {
|
||||||
od_set_cursor(i - top_of_screen + 5, 1);
|
od_set_cursor(i - top_of_screen + 5, 1);
|
||||||
od_printf("%s", body_lines[i]);
|
od_printf("%s", body_lines[i]);
|
||||||
|
Reference in New Issue
Block a user