* gdbtk.tcl (populate_register_window): Make initial window one

line taller to account for new column header line.
This commit is contained in:
Fred Fish 1996-06-21 18:20:12 +00:00
parent ab5c0a12f9
commit 4149b5f44a
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,8 @@ Fri Jun 21 11:04:47 1996 Fred Fish <fnf@cygnus.com>
* 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 <fnf@cygnus.com>

View File

@ -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}