From 504ede0afd41ba663f08d8dc9196567f9545af81 Mon Sep 17 00:00:00 2001 From: "Alexander S. Aganichev" Date: Wed, 20 Nov 2002 13:13:50 +0000 Subject: [PATCH] Fixed movement direction after marked messages deletion --- docs/notework.txt | 3 +++ golded3/gecmfd.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/notework.txt b/docs/notework.txt index f4ebd4f..6aee34f 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -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. diff --git a/golded3/gecmfd.cpp b/golded3/gecmfd.cpp index a5a7e95..ac84636 100644 --- a/golded3/gecmfd.cpp +++ b/golded3/gecmfd.cpp @@ -216,7 +216,7 @@ void Area::DelMsgs(GMsg* msg) { dellocked = true; } } - DeleteMsg(msg, DIR_PREV); + DeleteMsg(msg, reader_direction); PMrk.Del(msg->msgno); } }