Fixed changing of mail in netmail, fixed editcompletion in overwrite mode.
This commit is contained in:
parent
c931b13421
commit
67e6886083
@ -22,6 +22,13 @@ ______________________________________________________________________
|
|||||||
- Fixed small bug regarding cursor position after deleting stuff
|
- Fixed small bug regarding cursor position after deleting stuff
|
||||||
in input fields.
|
in input fields.
|
||||||
|
|
||||||
|
- Fixed crash after saving message to text file.
|
||||||
|
|
||||||
|
- Fixed incorrect Editcompletion behaviour in overwrite mode.
|
||||||
|
|
||||||
|
- Fixed incorrect "this message is not from you" message appearance
|
||||||
|
in netmail areas.
|
||||||
|
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
Notes for GoldED+ 1.1.4.3, February xx 2000
|
Notes for GoldED+ 1.1.4.3, February xx 2000
|
||||||
|
@ -1937,6 +1937,9 @@ void IEclass::statusline() {
|
|||||||
uint tlen = strlen(trig);
|
uint tlen = strlen(trig);
|
||||||
if(col >= tlen) {
|
if(col >= tlen) {
|
||||||
if(strneql(trig, currline->txt.c_str()+col-tlen, tlen)) {
|
if(strneql(trig, currline->txt.c_str()+col-tlen, tlen)) {
|
||||||
|
int saved_insert = insert;
|
||||||
|
insert = true;
|
||||||
|
batch_mode = BATCH_MODE;
|
||||||
uint n;
|
uint n;
|
||||||
for(n=0; n<tlen; n++)
|
for(n=0; n<tlen; n++)
|
||||||
DelLeft();
|
DelLeft();
|
||||||
@ -1945,6 +1948,7 @@ void IEclass::statusline() {
|
|||||||
for(n=0; n<clen; n++)
|
for(n=0; n<clen; n++)
|
||||||
insertchar(*cptr++);
|
insertchar(*cptr++);
|
||||||
HandleGEvent(EVTT_EDITCOMPLETION);
|
HandleGEvent(EVTT_EDITCOMPLETION);
|
||||||
|
insert = saved_insert;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -816,7 +816,7 @@ void ChangeMsg() {
|
|||||||
if(u->addr.net != GFTN_ALL or reader_msg->orig.net == 0 or not AA->isnet())
|
if(u->addr.net != GFTN_ALL or reader_msg->orig.net == 0 or not AA->isnet())
|
||||||
reader_keyok = NO;
|
reader_keyok = NO;
|
||||||
else {
|
else {
|
||||||
for(vector<gaka>::iterator x = CFG->aka.begin(); x != CFG->aka.begin(); x++) {
|
for(vector<gaka>::iterator x = CFG->aka.begin(); x != CFG->aka.end(); x++) {
|
||||||
if(reader_msg->orig.match(x->addr)) {
|
if(reader_msg->orig.match(x->addr)) {
|
||||||
reader_keyok = NO;
|
reader_keyok = NO;
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user