diff --git a/ChangeLog b/ChangeLog index 8dbfcdcf7..bc5320fe9 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2005-11-09 Marc Delisle + * pdf_pages.php: bug #1245891, too large scaling in PDF schema + 2005-11-09 Sebastian Mendel * server_databases.php, mysql_charsets-lib.php: bug #1351743 undefined function: pma_getservercollation() diff --git a/pdf_pages.php b/pdf_pages.php index 134d96400..c0430e713 100644 --- a/pdf_pages.php +++ b/pdf_pages.php @@ -124,15 +124,14 @@ if ($cfgRelation['pdfwork']) { if (!in_array($foreign_table, $all_tables)) { $all_tables[] = $foreign_table; } - } // now generate the coordinates for the schema, // in a clockwise spiral $pos_x = 300; $pos_y = 300; - $delta = 50; - $delta_mult = 1.34; + $delta = 110; + $delta_mult = 1.10; $direction = "right"; foreach ($all_tables AS $current_table) {