talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 747e95c91c59070d7c688702d007b34a5c716b47
parent 89d3142e639497bb25b8bd50add83b3dac100f70
Author: Andreas Rönnquist <gusnan@gusnan.se>
Date:   Fri, 14 Nov 2014 00:51:47 +0100

Set focus row to top item if marking a message above previous

Diffstat:
Msrc/gtk/gtksctree.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gtk/gtksctree.c b/src/gtk/gtksctree.c @@ -324,7 +324,7 @@ select_range (GtkSCTree *sctree, gint row) if (row < prev_row) { min = row; max = prev_row; - GTK_CMCLIST(sctree)->focus_row = max; + GTK_CMCLIST(sctree)->focus_row = min; } else { min = prev_row; max = row;