1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[rerender] draw_formatted called again

This commit is contained in:
Witold Filipczyk 2021-07-20 10:11:26 +02:00
parent 927b8fc1a6
commit c21e351525

View File

@ -31,6 +31,7 @@
#include "terminal/window.h" #include "terminal/window.h"
#include "util/conv.h" #include "util/conv.h"
#include "util/string.h" #include "util/string.h"
#include "viewer/text/draw.h"
#include "viewer/text/view.h" /* current_frame() */ #include "viewer/text/view.h" /* current_frame() */
#include "viewer/text/form.h" /* <-ecmascript_reset_state() */ #include "viewer/text/form.h" /* <-ecmascript_reset_state() */
#include "viewer/text/vs.h" #include "viewer/text/vs.h"
@ -253,7 +254,7 @@ delayed_reload(void *data)
reset_document(rel->document); reset_document(rel->document);
render_xhtml_document(rel->cached, rel->document, NULL); render_xhtml_document(rel->cached, rel->document, NULL);
sort_links(rel->document); sort_links(rel->document);
//draw_formatted(rel->ses, 0); draw_formatted(rel->ses, 0);
mem_free(rel); mem_free(rel);
} }