diff --git a/docs/notework.txt b/docs/notework.txt index cddc693..da09655 100644 --- a/docs/notework.txt +++ b/docs/notework.txt @@ -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. diff --git a/golded3/gemlst.cpp b/golded3/gemlst.cpp index b64605a..9d9b686 100644 --- a/golded3/gemlst.cpp +++ b/golded3/gemlst.cpp @@ -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;