mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
Don't check window type in tui_set_win_focus_to
This changes tui_set_win_focus_to so that it no longer checks the window type. Instead, now tui_unhighlight_win also checks whether the window can be highlighted. gdb/ChangeLog 2019-06-25 Tom Tromey <tom@tromey.com> * tui/tui-win.c (tui_set_win_focus_to): Don't check window type. * tui/tui-wingeneral.c (tui_unhighlight_win): Check can_highlight.
This commit is contained in:
@ -1,3 +1,9 @@
|
||||
2019-06-25 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* tui/tui-win.c (tui_set_win_focus_to): Don't check window type.
|
||||
* tui/tui-wingeneral.c (tui_unhighlight_win): Check
|
||||
can_highlight.
|
||||
|
||||
2019-06-25 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* tui/tui-win.c (tui_source_window_base::update_tab_width): Call
|
||||
|
@ -458,11 +458,8 @@ tui_set_win_focus_to (struct tui_win_info *win_info)
|
||||
{
|
||||
struct tui_win_info *win_with_focus = tui_win_with_focus ();
|
||||
|
||||
if (win_with_focus != NULL
|
||||
&& win_with_focus->type != CMD_WIN)
|
||||
tui_unhighlight_win (win_with_focus);
|
||||
tui_set_win_with_focus (win_info);
|
||||
if (win_info->type != CMD_WIN)
|
||||
tui_highlight_win (win_info);
|
||||
}
|
||||
}
|
||||
|
@ -108,6 +108,7 @@ void
|
||||
tui_unhighlight_win (struct tui_win_info *win_info)
|
||||
{
|
||||
if (win_info != NULL
|
||||
&& win_info->can_highlight
|
||||
&& win_info->handle != NULL)
|
||||
{
|
||||
box_win (win_info, NO_HILITE);
|
||||
|
Reference in New Issue
Block a user