From 4149b5f44a9e3b13b73aeb8da6432a5ddf4f3479 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Fri, 21 Jun 1996 18:20:12 +0000 Subject: [PATCH] * gdbtk.tcl (populate_register_window): Make initial window one line taller to account for new column header line. --- gdb/ChangeLog | 2 ++ gdb/gdbtk.tcl | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6b1baa271d..9516c86724 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -3,6 +3,8 @@ Fri Jun 21 11:04:47 1996 Fred Fish * gdbtk.tcl (create_register_windows): Include missing '$'s. Add global declarations for various reg_format_* variables. + * gdbtk.tcl (populate_register_window): Make initial window one + line taller to account for new column header line. Fri Jun 21 09:46:47 1996 Fred Fish diff --git a/gdb/gdbtk.tcl b/gdb/gdbtk.tcl index 04d5fa6955..f517245cfa 100644 --- a/gdb/gdbtk.tcl +++ b/gdb/gdbtk.tcl @@ -1977,7 +1977,7 @@ proc populate_reg_window {} { set width [expr $max_regname_width + 15] - set height [llength $regnames] + set height [expr [llength $regnames] + 1] if {$height > 60} {set height 60}