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

In change_hook_html, instead of redrawing the current tab,

set the resize flag on all tabs so that they will all be redrawn
to reflect the new setting.
This commit is contained in:
Miciah Dashiel Butler Masters 2005-10-26 09:40:52 +00:00 committed by Miciah Dashiel Butler Masters
parent bf7eec2570
commit c313b2877a

View File

@ -875,12 +875,8 @@ change_hook_connection(struct session *ses, struct option *current, struct optio
static int
change_hook_html(struct session *ses, struct option *current, struct option *changed)
{
if (ses) {
draw_formatted(ses, 1);
load_frames(ses, ses->doc_view);
process_file_requests(ses);
print_screen_status(ses);
}
foreach (ses, sessions) ses->tab->resize = 1;
return 0;
}