From 82316b3e14f8f2fd7aa78c3adab3aeb37a09e42b Mon Sep 17 00:00:00 2001 From: Thomas Roessler Date: Tue, 15 May 2007 21:05:53 +0200 Subject: [PATCH] Jump to the next *sub*-thread when tag-subthread is invoked, not to the next thread. --- curs_main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; -- 2.50.1