mirror of
https://github.com/bobbimanners/emailler.git
synced 2024-11-05 00:04:46 +00:00
Fixed cursor position bug with cursor left at end of wrapped line
This commit is contained in:
parent
c4d68b9588
commit
f30e82362f
@ -5,6 +5,7 @@
|
||||
|
||||
// Note: Use my fork of cc65 to get a flashing cursor!!
|
||||
|
||||
// TODO: Delete left EOL erases wrong line on screen
|
||||
// TODO: Minor bug - can delete too many chars from status line
|
||||
// TODO: Doesn't check for error cases when calling gap buffer functions
|
||||
// TODO: Should be smarter about redrawing when updating selection!!!
|
||||
@ -674,7 +675,7 @@ void update_after_delete_char(void) {
|
||||
if (col > 0)
|
||||
--col;
|
||||
else {
|
||||
col = 0;
|
||||
col = 79;
|
||||
if (row > 0)
|
||||
--row;
|
||||
else {
|
||||
|
@ -4,7 +4,7 @@
|
||||
// Bobbi June 2020
|
||||
/////////////////////////////////////////////////////////////////
|
||||
|
||||
#define PROGNAME "emai//er v0.93"
|
||||
#define PROGNAME "emai//er v0.94"
|
||||
|
||||
// Configuration params from POP65.CFG
|
||||
char cfg_server[40]; // IP of POP3 server
|
||||
|
Loading…
Reference in New Issue
Block a user