From: Thomas Roessler Date: Tue, 15 May 2007 19:05:53 +0000 (+0200) Subject: Jump to the next *sub*-thread when tag-subthread is invoked, X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=82316b3e14f8f2fd7aa78c3adab3aeb37a09e42b;p=neomutt Jump to the next *sub*-thread when tag-subthread is invoked, not to the next thread. --- diff --git a/curs_main.c b/curs_main.c index 8e26dedbf..ffd0e6fee 100644 --- a/curs_main.c +++ b/curs_main.c @@ -2090,7 +2090,10 @@ int mutt_index_menu (void) { if (option (OPTRESOLVE)) { - menu->current = mutt_next_thread (CURHDR); + if (op == OP_TAG_THREAD) + menu->current = mutt_next_thread (CURHDR); + else + menu->current = mutt_next_subthread (CURHDR); if (menu->current == -1) menu->current = menu->oldcurrent;