commit a70f2a5ffcad7910ffa2616663ac60075ed9e58d
parent 08edf06caeb11ab80bf54e1987a91401a0682b00
Author: Colin Leroy <colin@colino.net>
Date: Fri, 2 May 2014 11:41:14 +0200
Fix insert point after filling in textview
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/src/textview.c b/src/textview.c
@@ -641,6 +641,8 @@ void textview_show_part(TextView *textview, MimeInfo *mimeinfo, FILE *fp)
textview->loading = FALSE;
textview->stop_loading = FALSE;
+ textview_set_position(textview, 0);
+
END_TIMING();
return;
}
@@ -659,6 +661,8 @@ void textview_show_part(TextView *textview, MimeInfo *mimeinfo, FILE *fp)
textview->loading = FALSE;
textview->stop_loading = FALSE;
+
+ textview_set_position(textview, 0);
END_TIMING();
}