diff options
author | Fred Drake <fdrake@acm.org> | 1998-08-11 19:33:38 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-08-11 19:33:38 (GMT) |
commit | 9f7adc4f226521f236ec3b04b07f41f398810c9a (patch) | |
tree | b3fa3195b89ead792975579dc6406ab3a9c5347f /Doc/perl | |
parent | 0ceaada2da00dda77234fb438f73567934a3977c (diff) | |
download | cpython-9f7adc4f226521f236ec3b04b07f41f398810c9a.zip cpython-9f7adc4f226521f236ec3b04b07f41f398810c9a.tar.gz cpython-9f7adc4f226521f236ec3b04b07f41f398810c9a.tar.bz2 |
Get the <IMG> sizes right for the navigation buttons.
Diffstat (limited to 'Doc/perl')
-rw-r--r-- | Doc/perl/l2hinit.perl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Doc/perl/l2hinit.perl b/Doc/perl/l2hinit.perl index b098ba2..59e6fb5 100644 --- a/Doc/perl/l2hinit.perl +++ b/Doc/perl/l2hinit.perl @@ -85,6 +85,12 @@ sub custom_driver_hook{ } +$iconsizes{'up'} = 'width="75" height="25"'; +$iconsizes{'next'} = 'width="75" height="25"'; +$iconsizes{'previous'} = 'width="75" height="25"'; +$iconsizes{'contents'} = 'width="75" height="25"'; +$iconsizes{'index'} = 'width="75" height="25"'; + $CUSTOM_BUTTONS = ''; sub make_nav_panel{ @@ -355,7 +361,7 @@ sub add_bbl_and_idx_dummy_commands { # Add a button to the navigation areas: $CUSTOM_BUTTONS .= ("<a\n href=\"modindex.html\"><img" . " src=\"$ICONSERVER$dd" - . "modules_motif.gif\" border=0" + . "modules_motif.gif\" width=74 height=25 border=0" . " alt=\"[Modules]\"></a>"); } else { |