mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
Don't call touchwin in tui_gen_win_info::refresh_window
The call to touchwin in tui_gen_win_info::refresh_window was an artifact of some earlier refactorings. Testing shows it isn't needed any more -- I believe it was only ever needed for the data item window display problem; but that's been solved more locally. gdb/ChangeLog 2019-08-30 Tom Tromey <tom@tromey.com> * tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't call touchwin.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2019-08-30 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
* tui/tui-wingeneral.c (tui_gen_win_info::refresh_window): Don't
|
||||||
|
call touchwin.
|
||||||
|
|
||||||
2019-08-30 Tom Tromey <tom@tromey.com>
|
2019-08-30 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
* tui/tui-wingeneral.c (box_win): Assume win_info and
|
* tui/tui-wingeneral.c (box_win): Assume win_info and
|
||||||
|
@ -38,10 +38,7 @@ void
|
|||||||
tui_gen_win_info::refresh_window ()
|
tui_gen_win_info::refresh_window ()
|
||||||
{
|
{
|
||||||
if (handle != NULL)
|
if (handle != NULL)
|
||||||
{
|
wrefresh (handle);
|
||||||
touchwin (handle);
|
|
||||||
wrefresh (handle);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Function to delete the curses window, checking for NULL. */
|
/* Function to delete the curses window, checking for NULL. */
|
||||||
|
Reference in New Issue
Block a user