experimental change to message editor

This commit is contained in:
Andrew Pamment 2017-03-30 13:19:53 +10:00
parent 6ba43f0c83
commit 6f6c375656

View File

@ -620,6 +620,12 @@ char *message_editor() {
}
od_set_cursor(position_y - top_of_screen + 3, position_x) {
od_printf("%s", &line[position_x]);
od_clr_line();
}
/*
if (position_x > 1) {
if (position_y > 20) {
od_set_cursor(23, position_x - 1);
@ -656,6 +662,7 @@ char *message_editor() {
} else {
od_set_cursor(position_y - top_of_screen + 3, position_x + 1);
}
*/
}
}
}