1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

BFU: Redraw the terminal when moving the main menu to the bottom.

This fixes a bug where choosing e.g. "About" from the menu left
the main menu visible but Ctrl-L in the About dialog hid it again.
This commit is contained in:
Kalle Olavi Niemitalo 2006-05-15 00:30:54 +03:00 committed by Kalle Olavi Niemitalo
parent ca84c353b5
commit 1fdd9002cb

View File

@ -153,6 +153,7 @@ select_menu_item(struct terminal *term, struct menu_item *it, void *data)
menu->selected = -1;
del_from_list(win);
add_to_list_end(term->windows, win);
redraw_terminal(term);
} else
delete_window(win);
}