mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-28 14:59:41 +03:00
Increase computed time before scheduled redraws.
svn path=/trunk/netsurf/; revision=11674
This commit is contained in:
parent
5cefc9584a
commit
9336ea3ac8
@ -1736,8 +1736,8 @@ void html_reformat(struct content *c, int width, int height)
|
||||
|
||||
time_taken = wallclock() - time_before;
|
||||
c->reformat_time = wallclock() +
|
||||
((time_taken < option_min_reflow_period ?
|
||||
option_min_reflow_period : time_taken * 1.25));
|
||||
((time_taken * 3 < option_min_reflow_period ?
|
||||
option_min_reflow_period : time_taken * 3));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user