| 335 |
// prints("\033[T"); // Scroll down 1 line |
// prints("\033[T"); // Scroll down 1 line |
| 336 |
max_lines = screen_rows - 1; // Legacy Fterm only works with this line |
max_lines = screen_rows - 1; // Legacy Fterm only works with this line |
| 337 |
break; |
break; |
|
case KEY_DOWN: |
|
| 338 |
case CR: |
case CR: |
| 339 |
|
igetch_reset(); |
| 340 |
|
case KEY_DOWN: |
| 341 |
if (c_line_current + ((screen_rows - 2) - (line - 1)) >= c_line_total) // Reach bottom |
if (c_line_current + ((screen_rows - 2) - (line - 1)) >= c_line_total) // Reach bottom |
| 342 |
{ |
{ |
| 343 |
break; |
break; |