summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorMichael Stahl <michael.stahl@allotropia.de>2023-03-14 15:20:22 +0100
committerMichael Stahl <michael.stahl@allotropia.de>2023-03-16 09:09:50 +0000
commit529afed0ba3ca5e659cea661816e9164846630e8 (patch)
treec5ca999c3e5938924b1aa3953997836396e95a0b /sd
parent7a7eb4aa21ca0c83db825fe8d5a5278611b391d8 (diff)
tdf#39667 filter,officecfg: PDF export dialog: set initial view to...
... Outline for PDF/UA. * change the dialog to disable the radio buttons if PDF/UA is enabled * also change the configuration to make Outline the default Change-Id: Iea8c5e0f8560c972dc250859198bea1cb9fc3597 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148883 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'sd')
-rw-r--r--sd/qa/uitest/impress_tests/exportToPDF.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/qa/uitest/impress_tests/exportToPDF.py b/sd/qa/uitest/impress_tests/exportToPDF.py
index f1240fabf165..429e28df4f0d 100644
--- a/sd/qa/uitest/impress_tests/exportToPDF.py
+++ b/sd/qa/uitest/impress_tests/exportToPDF.py
@@ -49,13 +49,13 @@ class exportToPDF(UITestCase):
for child in nonSelectedChildren:
self.assertEqual("false", get_state_as_dict(xDialog.getChild(child))['Selected'])
- checkedChildren = ['all', 'allbookmarks', 'changeany', 'default', 'defaultlayout', 'fitdefault', 'jpegcompress', 'pageonly', 'printhigh']
+ checkedChildren = ['all', 'allbookmarks', 'changeany', 'default', 'defaultlayout', 'fitdefault', 'jpegcompress', 'outline', 'printhigh']
for child in checkedChildren:
self.assertEqual("true", get_state_as_dict(xDialog.getChild(child))['Checked'])
nonCheckedChildren = ['changecomment', 'changeform', 'changeinsdel', 'changenone', 'contfacinglayout', 'contlayout', 'fitvis',
- 'fitwidth', 'fitwin', 'fitzoom', 'losslesscompress', 'openinternet', 'openpdf', 'outline', 'printlow', 'printnone', 'range',
+ 'fitwidth', 'fitwin', 'fitzoom', 'losslesscompress', 'openinternet', 'openpdf', 'pageonly', 'printlow', 'printnone', 'range',
'selection', 'singlelayout', 'thumbs', 'visiblebookmark']
for child in nonCheckedChildren: