diff options
author | Joe Conway <mail@joeconway.com> | 2019-04-27 11:36:51 -0400 |
---|---|---|
committer | Joe Conway <mail@joeconway.com> | 2019-04-27 11:36:51 -0400 |
commit | 29046c44f36099f4c979b1491fcf27db2f9184f9 (patch) | |
tree | 8425613693334d4eb056d3ed8fc658a31da048da | |
parent | 7dc78d8ef3e62f7e06d7767c63dcede048377b9a (diff) | |
download | postgresql-29046c44f36099f4c979b1491fcf27db2f9184f9.tar.gz postgresql-29046c44f36099f4c979b1491fcf27db2f9184f9.zip |
Add viewBox attribute to storage page layout SVG image
Recently added SVG image for storage page layout lacks
a viewBox attribute which seems necessary to ensure propoer
rendering. Add it.
Author: Jonathan Katz
Discussion: https://postgr.es/m/ba31e0e1-4c9b-b309-70e8-8e7ac14fc87e%40postgresql.org
-rw-r--r-- | doc/src/sgml/images/pagelayout.svg | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/images/pagelayout.svg b/doc/src/sgml/images/pagelayout.svg index 6b819a553e2..3cf89f0a14e 100644 --- a/doc/src/sgml/images/pagelayout.svg +++ b/doc/src/sgml/images/pagelayout.svg @@ -3,6 +3,7 @@ xmlns='http://www.w3.org/2000/svg' width='610' height='210' + viewBox='0.00 0.00 610.00 210.00' shape-rendering='geometricPrecision' version='1.0'> <defs> @@ -37,4 +38,4 @@ <text x='324' y='166' font-family='Courier' font-size='15' stroke='none' fill='#000000' ><![CDATA[Item]]></text> <text x='509' y='166' font-family='Courier' font-size='15' stroke='none' fill='#000000' ><![CDATA[Special]]></text> </g> -</svg>
\ No newline at end of file +</svg> |