Fixed backspace operation on EOL
This commit is contained in:
parent
2e70dec322
commit
dae8c0fead
@ -565,8 +565,8 @@ void IEclass::GoLeft() {
|
|||||||
if(currline->prev) {
|
if(currline->prev) {
|
||||||
GoUp();
|
GoUp();
|
||||||
GoEOL();
|
GoEOL();
|
||||||
if((col != mincol) and ((currline->txt[col] == '\n') or not ((col == (maxcol + 1)) and (currline->txt[col-1] == ' '))))
|
// if((col != mincol) and ((currline->txt[col] == '\n') or not ((col == (maxcol + 1)) and (currline->txt[col-1] == ' '))))
|
||||||
col--;
|
// col--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Reference in New Issue
Block a user