Fixed replylinkshowalways for areas with 0 messages

This commit is contained in:
Ianos Gnatiuc 2005-12-03 20:32:19 +00:00
parent 4ea7052b67
commit 17d4da66ed
2 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,8 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________
- Fixed replylinkshowalways for areas with 0 messages.
- Fixed address lookup from header editor (pressing ENTER on empty To:).
- Fixed keystacking conflicts:

View File

@ -1237,7 +1237,8 @@ void GThreadlist::Run() {
BuildThreadIndex(reader_msg->msgno);
if(CFG->replylinkshowalways || (list.size() > 1))
size_t size = list.size();
if ((CFG->replylinkshowalways && (size > 0)) || (size > 1))
run_picker();
else {
w_info(LNG->NoThreadlist);