mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 13:56:22 +08:00
Minor simplification in tui_default_win_viewport_height
tui_default_win_viewport_height doesn't need to look at tui_win_list; it can simply check the type directly. gdb/ChangeLog 2019-08-15 Tom Tromey <tom@tromey.com> * tui/tui-layout.c (tui_default_win_viewport_height): Don't examine tui_win_list.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2019-08-15 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* tui/tui-layout.c (tui_default_win_viewport_height): Don't
|
||||
examine tui_win_list.
|
||||
|
||||
2019-08-15 Tom Tromey <tom@tromey.com>
|
||||
|
||||
* tui/tui-winsource.h (tui_clear_source_content): Don't declare.
|
||||
|
@ -304,7 +304,7 @@ tui_default_win_viewport_height (enum tui_win_type type,
|
||||
|
||||
h = tui_default_win_height (type, layout);
|
||||
|
||||
if (tui_win_list[type] == TUI_CMD_WIN)
|
||||
if (type == CMD_WIN)
|
||||
h -= 1;
|
||||
else
|
||||
h -= 2;
|
||||
|
Reference in New Issue
Block a user