From 1c6290db0650fa75957ce8814cfdb938c4fe6b00 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 9 Nov 2005 12:58:28 +0000 Subject: [PATCH] bug 1245891, too large scaling in PDF schema --- ChangeLog | 3 +++ pdf_pages.php | 5 ++--- 2 files changed, 5 insertions(+), 3 deletions(-) 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) {