Fixed movement direction after marked messages deletion

This commit is contained in:
Alexander S. Aganichev 2002-11-20 13:13:50 +00:00
parent b22415f6ea
commit 504ede0afd
2 changed files with 4 additions and 1 deletions

View File

@ -12,6 +12,9 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________
- When deleting marked messages the pointer moved always on the
previous message instead of the next in movement direction.
- Fixed some problems with readonly areas: it is now not possible to
change messages in R/O areas, it is possible to set group of areas
to R/O using ATTRIBUTES keyword in Random System Group.

View File

@ -216,7 +216,7 @@ void Area::DelMsgs(GMsg* msg) {
dellocked = true;
}
}
DeleteMsg(msg, DIR_PREV);
DeleteMsg(msg, reader_direction);
PMrk.Del(msg->msgno);
}
}