LISTtogglebookmark key works in thread list
This commit is contained in:
parent
b52fa95643
commit
90950f8cb8
@ -10,6 +10,8 @@ ______________________________________________________________________
|
||||
Notes for GoldED+ 1.1.5, /snapshot/
|
||||
______________________________________________________________________
|
||||
|
||||
+ LISTtogglebookmark key works in thread list.
|
||||
|
||||
+ New config file token: Translate "text" "translation". Used together
|
||||
with @tr{text} macro to translate some parts of template.
|
||||
|
||||
|
@ -1191,6 +1191,19 @@ bool GThreadlist::handle_key() {
|
||||
break;
|
||||
}
|
||||
|
||||
case KK_ListToggleBookMark:
|
||||
if (AA->bookmark == list[index].msgno)
|
||||
{
|
||||
AA->bookmark = 0;
|
||||
display_bar();
|
||||
}
|
||||
else
|
||||
{
|
||||
AA->bookmark = list[index].msgno;
|
||||
update();
|
||||
}
|
||||
break;
|
||||
|
||||
case KK_ListDosShell:
|
||||
DosShell();
|
||||
break;
|
||||
|
Reference in New Issue
Block a user