Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2005-11-09 15:58:28 +0300
committerMarc Delisle <marc@infomarc.info>2005-11-09 15:58:28 +0300
commit1c6290db0650fa75957ce8814cfdb938c4fe6b00 (patch)
tree7711b0b40a9562bb51d86651503573e715a3c3dc /pdf_pages.php
parent2da8671831e0e18472ba6482cbbc9f7e53ddfa0b (diff)
bug 1245891, too large scaling in PDF schema
Diffstat (limited to 'pdf_pages.php')
-rw-r--r--pdf_pages.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/pdf_pages.php b/pdf_pages.php
index 134d964009..c0430e7136 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) {