diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2019-03-25 13:57:47 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-03-25 17:41:41 +0100 |
commit | 9eb111333b7440fd166057a1c62840187aaf35a8 (patch) | |
tree | 1b2d94ae22c441832a6fa78388167fbbe65fcf46 /officecfg | |
parent | 317fa411b91c7b4db4124356fc8d3bd4da1ea1e7 (diff) |
svtools: double the limit of max drawing page size
When I load an ODG document page, which is 5080 mm wide, then the UI
told me that it's 300 cm wide, which was misleading.
There is no real reason why the limit can't be higher, the draw page
size is sal_Int32 and the unit is either twips or mm100s: in both cases
sal_Int32 is more than enough to store the new limit still.
Change-Id: Ifb501eed4e288281bcc73dce71bdb03ac213b0c1
Reviewed-on: https://gerrit.libreoffice.org/69673
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Common.xcs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index e83663786ec2..5179d366e919 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -1051,20 +1051,20 @@ <prop oor:name="MaximumPaperWidth" oor:type="xs:int" oor:nillable="false"> <info> <desc>Specifies the maximum allowed Paper Width for page definitions - in cm. Default is 3m, i.e. 300 cm. When this is changed to higher + in cm. Default is 6m, i.e. 600 cm. When this is changed to higher values, it is done on own risk.</desc> <label>Maximum allowed Paper Width for page definitions</label> </info> - <value>300</value> + <value>600</value> </prop> <prop oor:name="MaximumPaperHeight" oor:type="xs:int" oor:nillable="false"> <info> <desc>Specifies the maximum allowed Paper Height for page definitions - in cm. Default is 3m, i.e. 300 cm. When this is changed to higher + in cm. Default is 6m, i.e. 600 cm. When this is changed to higher values, it is done on own risk.</desc> <label>Maximum allowed Paper Height for page definitions</label> </info> - <value>300</value> + <value>600</value> </prop> <prop oor:name="MaximumPaperLeftMargin" oor:type="xs:int" oor:nillable="false"> <info> |