Fixed replylinkshowalways for areas with 0 messages
This commit is contained in:
parent
4ea7052b67
commit
17d4da66ed
@ -10,6 +10,8 @@ ______________________________________________________________________
|
|||||||
Notes for GoldED+ 1.1.5, /snapshot/
|
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 address lookup from header editor (pressing ENTER on empty To:).
|
||||||
|
|
||||||
- Fixed keystacking conflicts:
|
- Fixed keystacking conflicts:
|
||||||
|
@ -1237,7 +1237,8 @@ void GThreadlist::Run() {
|
|||||||
|
|
||||||
BuildThreadIndex(reader_msg->msgno);
|
BuildThreadIndex(reader_msg->msgno);
|
||||||
|
|
||||||
if(CFG->replylinkshowalways || (list.size() > 1))
|
size_t size = list.size();
|
||||||
|
if ((CFG->replylinkshowalways && (size > 0)) || (size > 1))
|
||||||
run_picker();
|
run_picker();
|
||||||
else {
|
else {
|
||||||
w_info(LNG->NoThreadlist);
|
w_info(LNG->NoThreadlist);
|
||||||
|
Reference in New Issue
Block a user