diff options
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-layout.c | 18 | ||||
-rw-r--r-- | gdb/tui/tui-stack.c | 1 | ||||
-rw-r--r-- | gdb/tui/tui-win.c | 9 |
3 files changed, 11 insertions, 17 deletions
diff --git a/gdb/tui/tui-layout.c b/gdb/tui/tui-layout.c index 33d3dd6..03115a7 100644 --- a/gdb/tui/tui-layout.c +++ b/gdb/tui/tui-layout.c @@ -511,10 +511,8 @@ show_source_disasm_command (void) tui_term_width (), 0, src_height - 1); - locator->resize (2 /* 1 */ , - tui_term_width (), - 0, - (src_height + asm_height) - 1); + locator->resize (1, tui_term_width (), + 0, (src_height + asm_height) - 1); if (TUI_CMD_WIN == NULL) tui_win_list[CMD_WIN] = new tui_cmd_window (); @@ -561,10 +559,8 @@ show_data (enum tui_layout_type new_layout) tui_term_width (), 0, data_height - 1); - locator->resize (2 /* 1 */ , - tui_term_width (), - 0, - total_height - 1); + locator->resize (1, tui_term_width (), + 0, total_height - 1); TUI_CMD_WIN->resize (TUI_CMD_WIN->height, tui_term_width (), 0, total_height); @@ -635,10 +631,8 @@ show_source_or_disasm_and_command (enum tui_layout_type layout_type) win_info = TUI_DISASM_WIN; } - locator->resize (2 /* 1 */ , - tui_term_width (), - 0, - src_height - 1); + locator->resize (1, tui_term_width (), + 0, src_height - 1); win_info->resize (src_height - 1, tui_term_width (), 0, diff --git a/gdb/tui/tui-stack.c b/gdb/tui/tui-stack.c index 163a5ad..6bfbb0e 100644 --- a/gdb/tui/tui-stack.c +++ b/gdb/tui/tui-stack.c @@ -229,6 +229,7 @@ tui_locator_window::rerender () if (handle != NULL) { std::string string = make_status_line (); + scrollok (handle, FALSE); wmove (handle, 0, 0); /* We ignore the return value from wstandout and wstandend, casting them to void in order to avoid a compiler warning. The warning diff --git a/gdb/tui/tui-win.c b/gdb/tui/tui-win.c index d07a777..7704473 100644 --- a/gdb/tui/tui-win.c +++ b/gdb/tui/tui-win.c @@ -580,8 +580,7 @@ tui_resize_all (void) src_win->resize (new_height, screenwidth, 0, 0); - locator->resize (2 /* 1 */, screenwidth, - 0, new_height); + locator->resize (1, screenwidth, 0, new_height); new_height = screenheight - (new_height + 1); TUI_CMD_WIN->resize (new_height, screenwidth, @@ -637,7 +636,7 @@ tui_resize_all (void) second_win->resize (new_height, screenwidth, 0, first_win->height - 1); - locator->resize (2 /* 1 */, screenwidth, + locator->resize (1, screenwidth, 0, second_win->origin.y + new_height); /* Change the command window's height/width. */ @@ -1119,7 +1118,7 @@ tui_adjust_win_heights (struct tui_win_info *primary_win_info, second_win->resize (second_win->height + second_split_diff, width, 0, first_win->height - 1); - locator->resize (2 /* 1 */, width, + locator->resize (1, width, 0, (second_win->origin.y + second_win->height + 1)); @@ -1155,7 +1154,7 @@ tui_adjust_win_heights (struct tui_win_info *primary_win_info, else second_win->resize (second_win->height, width, 0, first_win->height - 1); - locator->resize (2 /* 1 */, width, + locator->resize (1, width, 0, (second_win->origin.y + second_win->height + 1)); TUI_CMD_WIN->origin.y = locator->origin.y + 1; |