summaryrefslogtreecommitdiff
path: root/officecfg
AgeCommit message (Collapse)AuthorFilesLines
2020-03-03Styles > Text Body menu didn't work in non-English UIMaxim Monastirsky1-1/+1
Capitalization of "Body" present only in the UI name of the style, but that might be something completely different in other languages. We need to reference the style using its programmatic name instead. Change-Id: I2d980a225d6f5346d378947621ace3a17e0a8f81 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87842 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> (cherry picked from commit 18b2cecfef3dd26bac15522667b465802ff3f96b) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/89777
2019-12-20tdf#128683 Add More Options button to Table section in Writer's SidebarRoman Kuznetsov1-0/+3
Change-Id: I057f7853fafcf8aa33611adae969b12fda6405b7 Reviewed-on: https://gerrit.libreoffice.org/84972 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Roman Kuznetsov <antilibreoffice@gmail.com> (cherry picked from commit 82dce922e6d36b40dd0571b0c00666cd6fc1a8ac) Reviewed-on: https://gerrit.libreoffice.org/85530
2019-12-17tdf#64902 Writer table: Paste Special->Rows AboveLászló Németh1-1/+23
and Columns Before table popup and Edit menu items to insert clipboard table data in a table as new rows/columns instead of overwriting the content of the original cells of the target table. This commit introduces the new commands .uno:PasteRowsBefore and .uno:PasteColumnsBefore. See also commit 1e278d1d0cfb1d5375195aa764739f00633f21e8 (tdf#37156 Writer menu: Paste as Nested table). Change-Id: I7d13246a3ace6c5f709d607c416150f8872e4695 Reviewed-on: https://gerrit.libreoffice.org/85214 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org> (cherry picked from commit 7efae60f3625a58f8a617c80f2a55a695fbaef36) Reviewed-on: https://gerrit.libreoffice.org/85280
2019-12-14tdf#37156 Writer menu: Paste as Nested tableLászló Németh1-0/+11
Paste table data in Writer tables overwrites the content of the existing cells, when the cursor is there in an empty cell or at the beginning of the first paragraph of a table cell. Using the new Paste Special option "As Nested Table" of table popup (local) menu and Edit->Paste Special, (based on the new .uno:PasteNestedTable command), clipboard content (including native tables or tables copied from Calc or other spreadsheets) are inserted as nested tables in empty cells and at cell starting cursor positions. Change-Id: I32807200883651e492ae280efce7bf9806f22283 Reviewed-on: https://gerrit.libreoffice.org/85094 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org> (cherry picked from commit 1e278d1d0cfb1d5375195aa764739f00633f21e8) Reviewed-on: https://gerrit.libreoffice.org/85145
2019-11-27tdf#43021 WIN opt-out of OS recent folder usageJan-Marek Glogowski1-12/+0
The Microsoft documentation for SetFolder explicitly mentiones "In general, we do not recommended the use of this method. [...] SetDefaultFolder is the better method." If SetDefaultFolder is used the recently-used folder overwrites the value passed to SetDefaultFolder, which is shared between all file pickers. With this patch we rely on the LO internal mechanism to show the last used directory in the file picker. Regina's workaround basically does the same, as it just sets oRegistryKeyContent.WorkPathChanged, which triggers the internal path to use SetFolder instead of SetDefaultFolder. If you're wondering about the GetFolder() handling, the MS API docs have this: "Gets either the folder currently selected in the dialog, or, if the dialog is not currently displayed, the folder that is to be selected when the dialog is opened." So the call to GetFolder(), after the dialog is closed, returns the folder set by the SetFolder call, not the folder selected by the user, in case of the save dialog at least. Change-Id: Ia24f47848501df82727bfb2a99db723468bfe5b1 Reviewed-on: https://gerrit.libreoffice.org/83409 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de> Tested-by: Jan-Marek Glogowski <glogow@fbihome.de> (cherry picked from commit ffa636ba74b04b3258ec9a696bc4eac33581fa24) Reviewed-on: https://gerrit.libreoffice.org/83839 Tested-by: Jenkins
2019-11-26Resolves tdf#129003 - Capitalization of menu entry "Show Tip-Of-The-Day"Heiko Tietze2-5/+5
Now Tip-of-the-Day Change-Id: I715d87cdd6b5d9a7d06a218ed8d1922037fea91b Reviewed-on: https://gerrit.libreoffice.org/83694 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org> (cherry picked from commit f8a5377c9ec208adac5eb394c0c2920dbb764bd0) Reviewed-on: https://gerrit.libreoffice.org/83806 Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2019-11-23tdf#128892 Give menu "Rename Sheet" an alternative mnemonic HTakeshi Abe1-1/+1
... to avoid the duplicate R for "Insert Rows". Change-Id: Ie2e0faf566ba5f85e4b2a72c289a4320e580f7f9 Reviewed-on: https://gerrit.libreoffice.org/83368 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> (cherry picked from commit 017c6150e94a3a621f6f3e789fe72cac90a7bf11) Reviewed-on: https://gerrit.libreoffice.org/83510
2019-11-12tdf#121239 give writer, calc and draw/impress the same underline optionsCaolán McNamara2-15/+23
uno:Underline is the "real" deal, and has multiple underline options uno:UnderlineSimple is "some underline on" vs no underline calc and writer had UnderlineSingle, UnderlineDouble and UnderlineDotted for that specific type of underline on vs not-on add those to draw/impress too and then use UnderlineSingle instead of Underline in the format menu so that when UnderlineDouble is applied, UnderlineSingle is not show as applied, instead of using Underline ot UnderlineSimple which would show as on if UnderlineDouble was applied Change-Id: I6f9fcf37c2c90d215ea52b536e4fa84734754850 Reviewed-on: https://gerrit.libreoffice.org/82469 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-11-09Remove unimplemented panel entry for ChartCharacterPanelMuhammet Kara1-23/+0
Change-Id: I6cf8c3c59d95948f6730530d9a8135995cd52c2a Reviewed-on: https://gerrit.libreoffice.org/82341 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
2019-11-07Avoid .uno: command names in the customization dialogMaxim Monastirsky2-1/+6
Change-Id: I37a510727dc2d5f8de1eb6ee5b60653e43ff0e4c Reviewed-on: https://gerrit.libreoffice.org/82230 Tested-by: Jenkins Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com>
2019-11-05Fix option to disable macrosSamuel Mehrbrodt1-0/+1
so that it indeeds disables any macro execution. Before, you could still add macros to the toolbar and execute them from there (and probably many more places). Now, if this option is set, any macro will no longer be executed. This includes Javascript, Beanshell and Python scripts Change-Id: Icfa845e836782c8e1b670a67694f79a60ad74fad Reviewed-on: https://gerrit.libreoffice.org/82052 Reviewed-by: Serge Krot (CIB) <Serge.Krot@cib.de> Tested-by: Serge Krot (CIB) <Serge.Krot@cib.de>
2019-11-02Add new 'Table' sidebar panel to WriterTamás Zolnai1-0/+26
This is the initial layout of the panel. It does not functional yet. Change-Id: Idd67ed921b71559bb704ef50cbfa97013fb80d6b Reviewed-on: https://gerrit.libreoffice.org/81893 Tested-by: Jenkins Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
2019-10-28Related tdf#117790: Caption order, caption positions for Lithuanian languageJulien Nabet1-0/+31
I used Stephan's comment, see: https://bugs.documentfoundation.org/show_bug.cgi?id=117790#c7 Modestas Rimkus' comment, see: https://bugs.documentfoundation.org/show_bug.cgi?id=117790#c11 Change-Id: Icec673426a47f4308c2810c5e1beed1011c13374 Reviewed-on: https://gerrit.libreoffice.org/81612 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-10-23writerfilter: add config to import all fields as generic, incl. commandsMichael Stahl1-0/+6
Change-Id: I02d178de3672200b69e60ba5841c993fa0d797f9 Reviewed-on: https://gerrit.libreoffice.org/80076 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
2019-10-23tdf#127909 save manually selected certificate pathJan-Marek Glogowski1-0/+5
Saves the value of the manual selection, independent from the real active certificate path, to restore the setting for the dialog. Change-Id: I5c423c594f38b1e2b25caa650b3ca2862cf49d82 Reviewed-on: https://gerrit.libreoffice.org/79979 Tested-by: Jenkins Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
2019-10-18Fix typoAndrea Gelmini1-1/+1
Change-Id: Iabec809b746e6072442b96dcacdcce071f5d9dd9 Reviewed-on: https://gerrit.libreoffice.org/81020 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-10-18tdf#86188 Compatibility setting enabling comments to footnotesKelemen Gábor1-0/+8
For better OOXML interoperability allow disabling the insertion of comments to footnotes/endnotes. It is not possible to add comments to footnotes/endnotes in Word so no wonder Writer generates invalid XML if one tries to save comments added to footnotes as DOCX. Prevent that by adding a centrally manageably key for disabling the menu item if the cursor is in a footnote/endnote. In OOXML-heavy environments sysadmins should be able to disable this and thus hide the footgun from users. Default setting is true so it means no change compared to current feature set. Change-Id: I2f799cb3f77a47fc14fa60b55fc5689a2710aff7 Reviewed-on: https://gerrit.libreoffice.org/80829 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2019-10-15Add option to prevent graphic swap outSamuel Mehrbrodt1-0/+8
Change-Id: Icbfc21b219cd4ba582e798e5deda6ef7c81a2009 Reviewed-on: https://gerrit.libreoffice.org/80773 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-10-11Add 'SinglePageSheets' option to the PDF export dialogMuhammet Kara1-0/+7
This handles the UI, and carrying the filter option to the pdfexport code. It will be handled in PDFExport class. Change-Id: I92c3f14a4ae38c4ab81f4f9eee63e5f3c864d0a6 Reviewed-on: https://gerrit.libreoffice.org/79397 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/80634 Tested-by: Jenkins Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
2019-09-23Resolves tdf#127400 - Allow to show tip of the day againHeiko Tietze2-0/+20
* UNO command TipOfTheDay and slot SID_TIPOFTHEDAY introduced and added to help menus * Tip ID introduced to keep the current tip over the day * Tip ID updates after 24h * Randomization of tips replaced by sequential order * Tip ID added to the dialog title Change-Id: I69b72b80d6d6afa25a1c4f01fa05bc60b5741db8 Reviewed-on: https://gerrit.libreoffice.org/78693 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2019-09-18The menu is called 'Form', not 'Forms'Andras Timar1-2/+2
Change-Id: I216e04bb54319cff5d790c5e223c6e49215d09a3 Reviewed-on: https://gerrit.libreoffice.org/79094 Tested-by: Jenkins Reviewed-by: Andras Timar <andras.timar@collabora.com>
2019-09-10Fix typosAndrea Gelmini1-2/+2
Change-Id: I49ac790b4f1b09f5041ec95b8cdf0d6323d036d9 Reviewed-on: https://gerrit.libreoffice.org/78796 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
2019-09-06Disable inserting HTML comments as notes by defaultSamuel Mehrbrodt1-1/+1
Usually HTML comments have no value, so I guess it's better to not import them by default Change-Id: Ie518e754797d3cf4874eb7d272663f21e68bc44d Reviewed-on: https://gerrit.libreoffice.org/78694 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-09-04tdf#101977 change tracking: add 'Accept/Reject and jump to next' commandsGabor Kelemen1-0/+22
to Track Changes toolbar by creating the new Writer UNO command .uno:RejectTrackedChangeToNext and .uno:AcceptTrackedChangeToNext. Note: This feature is similar to what Word does by default. Change-Id: Ic5d7f5663217c605ccbee2f16b49e76522f911e6 Reviewed-on: https://gerrit.libreoffice.org/76719 Reviewed-by: László Németh <nemeth@numbertext.org> Tested-by: László Németh <nemeth@numbertext.org>
2019-08-31[API CHANGE] remove MacroMigrationWizardCaolán McNamara1-5/+0
https://wiki.openoffice.org/wiki/Macros_in_Database_Documents Prior to OpenOffice 3 (2008) base didn't support macros, but subdocuments might have had macros. since OOo3 base supported macros and subdocuments not, and a migration wizard is available to update pre OOo3 documents to the new scheme. Here I presume whatever is going to get migrated has been migrated at this point and drop the migration wizard This undoes the addition of the idl for sdb::application::MacroMigrationWizard of commit 5b982b69363f0f067fe4a0f679528ce1c5a2eafc Date: Mon Mar 11 17:51:56 2013 +0200 so flag as an api change, though not to anything published Change-Id: I37271752234dda4e7e8f033e0136825fd356439b Reviewed-on: https://gerrit.libreoffice.org/78326 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2019-08-23SmartArt: add Edit Diagram dialogGrzegorz Araminowicz1-0/+5
Currently it displays only text representation of diagram. Change-Id: I3ff12c4abf2ed32f68ea9d7437905afc13279e62 Reviewed-on: https://gerrit.libreoffice.org/77873 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
2019-08-20Fix typosAndrea Gelmini1-4/+4
Change-Id: Ic987eeb9d99f64611a981282ec5691e4d1cb023d Reviewed-on: https://gerrit.libreoffice.org/77759 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
2019-08-20Fix typosAndrea Gelmini1-1/+1
Change-Id: I5db25074d42fa22f3e36969cb561ad64c1e96dc1 Reviewed-on: https://gerrit.libreoffice.org/77760 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-08-20tdf#114751 Update default fonts for Japanese locale (cont.)AWASHIRO Ikuya1-199/+32
- removed ancient fonts especially bundled by StarSuite - set to use Noto Sans/Serif CJK JP and Yu Gothic/Mincho by default Change-Id: I7e9409f531864c242d53f3677e35661b315c0e1a Reviewed-on: https://gerrit.libreoffice.org/77633 Tested-by: Jenkins Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
2019-08-19Fix typosAndrea Gelmini4-9/+9
Change-Id: I2bee2a13b639bfb1c69b773f832a1374619670a9 Reviewed-on: https://gerrit.libreoffice.org/77630 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2019-08-19Fix typosAndrea Gelmini2-2/+2
Change-Id: Ie6f3b2a959349c01d27b694398a7fefaaf46ea3a Reviewed-on: https://gerrit.libreoffice.org/77708 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
2019-08-19Fix typosAndrea Gelmini1-3/+3
Change-Id: Ida64346bc11053bf43fd1208914407b3b2f1338e Reviewed-on: https://gerrit.libreoffice.org/77681 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
2019-08-16tdf#126908 Add lang to TooltiplabelLaurent BP1-5/+5
Addition to commit?id=c3ca559841c857bf7b39f665433d71c89d220d0f Change-Id: Ie51412b31239f6aaf3813dee5c226a21c7d9c79d Reviewed-on: https://gerrit.libreoffice.org/77562 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2019-08-15embeddedobj: allow controlling if PDF documents are converted to Draw or notMiklos Vajna1-0/+17
This is a bit custom, since it's not a Microsoft filter. At the moment this affects only Insert -> Object -> OLE Object -> from file. Change-Id: If79602742a533db1b04e11a90890f8768186046d Reviewed-on: https://gerrit.libreoffice.org/77520 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2019-08-15embeddedobj: allow controlling if Visio documents are converted to Draw or notMiklos Vajna1-0/+7
At the moment this affects only Insert -> Object -> OLE Object -> from file. Change-Id: I8d1c6456481610491916e3be3766b0bb04dfa296 Reviewed-on: https://gerrit.libreoffice.org/77489 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
2019-08-08Resolves tdf#126608 - Unclear page formattingHeiko Tietze1-4/+1
Page entry moved into the next section and renamed to Page Style to make the difference to direct formatting more clear Change-Id: I1e75f9c82d459e35329231b06fa695651564f0c2 Reviewed-on: https://gerrit.libreoffice.org/77148 Reviewed-by: Tomaž Vajngerl <quikee@gmail.com> Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2019-08-08Context menu should display "Insert Comment" instead of just "Comment"Samuel Mehrbrodt1-0/+3
Change-Id: I8e6ee73cd1d7504e86770334e9afc31c0bb434b1 Reviewed-on: https://gerrit.libreoffice.org/77145 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-08-08tdf#119228 Add 'Resolved Comments' option to the View menu.Scott Clarke1-0/+11
Change-Id: Ib4554b77857992959a386c71e99e424579196ded Co-authored-by: Jim MacArthur <jim.macarthur@codethink.co.uk> Reviewed-on: https://gerrit.libreoffice.org/75862 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-08-07tdf#103703 Print automatically inserted blank pages by defaultGabor Kelemen1-1/+1
This reverts tdf#42099 as that is believed to be a misunderstood report. Change-Id: I01984ffcb200c2d7d780c740f92f956dd9fdc363 Reviewed-on: https://gerrit.libreoffice.org/75944 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org>
2019-08-07tdf#119228 Add UI elements to resolve and unresolve commentsScott Clarke1-0/+8
Change-Id: I22403299d034a638724077744070b3add64cacf2 Co-authored-by: Jim MacArthur <jim.macarthur@codethink.co.uk> Reviewed-on: https://gerrit.libreoffice.org/75861 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-08-06Move CopyHyperlinkLocation to svxSamuel Mehrbrodt2-5/+5
so that it can be used by other modules too Change-Id: I43d197320f85a3ec06b6b0b832f7bb5647800076 Reviewed-on: https://gerrit.libreoffice.org/77012 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-08-06tdf#107471 Add checkbox to enable/disable sending crash reports to TDFGabor Kelemen1-0/+7
Also hide it when compiled with --disable-breakpad i.e. most Linux distributions Change-Id: I5d392e22410614550aa9602d0c30b0b81ec22ea0 Reviewed-on: https://gerrit.libreoffice.org/76771 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-08-01Make QR Code callable in calc and writerShubham Goyal1-0/+16
Change-Id: I73793100478c34a7721821cec1f8ccec0174d20c Reviewed-on: https://gerrit.libreoffice.org/74598 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-07-24"Basic macros" instead of "$Productname Basic macros"Samuel Mehrbrodt1-2/+2
This might lead to confusion as if there were different macro types depending on the current downstream package name. E.g. "LibreOffice Basic macros" might become "LibreOffice Vendor XY basic macros". Remove that confusion by using just "Basic macro" in the UI. Change-Id: Ifc2543bb151e94fc6c6e47d878720dd99294f596 Reviewed-on: https://gerrit.libreoffice.org/76216 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-07-22tdf#118370 Draw: add option to consolidate multiple textObjsJustin Luth1-0/+11
This gives the user a tool to consolidate multiple textboxes into a single textbox. First the user selects a group of textframes, and then runs the consolidate text function. This will REPLACE the marked textframes with a single textbox combining all of the text. The function inspects the text fragments to see if they end in sentence-ending punctuation. If not, then the next textbox's content is appended to it instead of starting a new pargraph. It is the user's responsibility to afterwards fix up paragraphing, and set paragraph properties. The rational for this patch is to simplify making major text changes on PDFs imported into Draw, since each paragraph is currently broken into tiny character-property textbox fragments. Copy/paste from the PDF itself doesn't keep character attributes, so it is hard for a user to re-create the text. This is related to tdf#32249, but as a comment says, a better solution would be to write an entire text-focused PDF import, rather than just pick up the pieces. And I agree, but considering this simple patch took me a couple of weeks of frustration, I'm obviously not the person to do that. And since the bug has been open for 9 years, likely no one else will either. Thus, this pick-up-the-pieces tool to help the end user. This initial patch works only with textFrames, but can easily be adjusted to consolidate other HasText() SdrObjects. However, that tended to produce unexpected results, so everything other than OBJ_TEXT is explicitly excluded. (Thus general shapes with text, callouts, text-along-path etc are ignored.) Change-Id: I68a9a5b187bf320a8e671414c5cb22b07725fd52 Reviewed-on: https://gerrit.libreoffice.org/75043 Tested-by: Jenkins Reviewed-by: Justin Luth <justin_luth@sil.org>
2019-07-19Addons(extension) support is extended for NotebookBarSumit Chauhan1-0/+105
This patch adds the schema for the extensions to be available in Notebookbar. We will adding items in addons.xcs in future if needed. Change-Id: I0a3831983b9758fac0a6fa32213ad6da20d6a97f Reviewed-on: https://gerrit.libreoffice.org/75134 Tested-by: Jenkins Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
2019-07-17vcl: make "Reduce Transparency" parameter tweakableVasily Melenchuk1-0/+8
"Reduce transparency" feature previously was using hardcoded value of 0.25. If current object area to whole printing area ratio exceeds this value, object is being written without any extra transparency layers in order to reduce metafile size. Right now this value can be adjusted in "Expert Configuration". Parameter is called "ReduceTransparencyMinArea". Change-Id: I43d5801a1dff6241de214f7b24425626dc06b4fb Reviewed-on: https://gerrit.libreoffice.org/75471 Tested-by: Jenkins Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2019-07-15tdf#125783 - .uno:WhatsNew command lacks name and tooltipHeiko Tietze1-0/+11
Label and tooltip added to GenericCommands Change-Id: I292c377aed146196f1a9c3cc92f122b9b14c9b70 Reviewed-on: https://gerrit.libreoffice.org/75632 Tested-by: Jenkins Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
2019-07-15Deduplicate EditHyperlink commandSamuel Mehrbrodt3-22/+11
Change-Id: I23f0c276c5c1229aeb4ea468c6b858e36c120bd9 Reviewed-on: https://gerrit.libreoffice.org/75480 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2019-07-12MSForms: Insert text-based date field from MS compatible Forms menuTamás Zolnai1-0/+8
Change-Id: I2f08fa806dc55a185adf67ca616af8d81bb23bda Reviewed-on: https://gerrit.libreoffice.org/75438 Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com> Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com>