summaryrefslogtreecommitdiff
path: root/officecfg
AgeCommit message (Collapse)AuthorFilesLines
2018-02-06rhbz#1541486: Fix localized'ness of ooSetupFactoryUIName propsStephan Bergmann1-1/+1
8f44fb5ee0bd21d192820ffd359504f6d1c68a52 "Mark Base window titles for localisation" localized some uses of ooSetupFactoryUIName in officecfg/registry/data/org/openoffice/Setup.xcu, but failed to mark the prop as oor:localized="true" in officecfg/registry/schema/org/openoffice/Setup.xcs. (So some arbitrary localized version of the prop would win at runtime, potentially displaying certain window titles in wrong languages.) Other uses of ooSetupFactoryUIName in Setup.xcu (for "Calc", "Impress", "Writer", etc.) have never been localized, and are probably not meant to be localized. AFAICS, irrespective of oor:localized="true" in Setup.xcs, their values not being marked with xml:lang="en-US" in Setup.xcu will mean that they will not appear in translations/source/*/officecfg/registry/data/org/openoffice.po and will not accidentally start to be translated after this commit. (Theoretically, inconsistencies between oor:localized in xcs and uses of xml:lang in xcu could statically be caught at build time, e.g., with officecfg/util/sanity.xsl. However, those checks work on each XML file individually, so don't have the schema information available when looking at the data in the xcu file. And those checks are written in XSLT, which makes writing new checks rather, erm, unpleasant.) Change-Id: I9c61e8ebf75d3d54f7e5b6688eac47a6ed8dc5c3 Reviewed-on: https://gerrit.libreoffice.org/49252 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com> (cherry picked from commit ffd8369b909c86653ef30593fddf67c9f5308583) Reviewed-on: https://gerrit.libreoffice.org/49271 Reviewed-by: Andras Timar <andras.timar@collabora.com>
2017-09-12tdf#95489 fix internal name for quotation character styleYousuf Philips1-2/+2
fix for a mistake in 9ab228fdd6efe9a7873e3de1bb2357531a79feac Change-Id: I5b02bcea1ff82d615e0f991654968c8079c52303 Reviewed-on: https://gerrit.libreoffice.org/41986 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Aron Budea <aron.budea@collabora.com>
2017-08-05tdf#79933 Set Ctrl+Alt+K for hyperlink in SpanishYousuf Philips1-0/+66
Change-Id: Ieb9c125fef493eca1cf0bc38286bdd569b74c6b3 Reviewed-on: https://gerrit.libreoffice.org/39664 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> Tested-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com> (cherry picked from commit 7ab9f12b57b1cb25b8b29f8bcbf006968db6b679) Reviewed-on: https://gerrit.libreoffice.org/39674
2017-08-02tdf#95489 use internal name for quotation character styleYousuf Philips1-1/+1
Change-Id: Ie52d1b558480be1c916ea1a0a4bdab26a5b72cb0 Reviewed-on: https://gerrit.libreoffice.org/40552 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2017-07-16officecfg: increase GraphicManager/TotalCacheSize again for 64-bitMichael Stahl3-1/+9
There's a bit of a problem with XFillBitmapItem, which contains a GraphicObject that can't be swapped because it's a poolable item. Generally contemptorary hardware has enough RAM that we can easily increase the cache size to 400M (effectively there's another factor of 2x), but on legacy 32-bit platforms the address space is getting scarce, so keep the existing size for those. Change-Id: I8437f4e8c5421f8ec20e94e4cdf64f867d7760ca (cherry picked from commit 55baf61c08630e0c09a87d99519211467818ef8c) Reviewed-on: https://gerrit.libreoffice.org/39969 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2017-07-15tdf#104883 Don't call InstallFontconfigResources if it's not availableSamuel Mehrbrodt2-0/+16
We need to call it once because we have no other way to detect whether it's working or not. But if we receive an error the first time, we disable it from now on. Change-Id: I67dba8b65660ff7e05bdf2ddc18b565550901cd1 Reviewed-on: https://gerrit.libreoffice.org/39894 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2017-06-19tdf#106018 Correct label for frame properties in context menuYousuf Philips1-3/+0
Change-Id: Iffec901799fefa8318bdfebe628f697f91e16f99 Reviewed-on: https://gerrit.libreoffice.org/38656 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com> (cherry picked from commit f6f68fc3c599ef1bbc27f1b5a4a0980611502e31) Reviewed-on: https://gerrit.libreoffice.org/38741
2017-06-09tdf#36019: Enable/disable extension installation and removal via GUIMuhammet Kara1-0/+19
Now extension installation and removal via the Extension Manager dialog can be dynamically enabled/disabled from the expert configurations. This also affects the installation by double-clicking the extension file in the file manager, but doesn't affect the unopkg commands. When ExtensionSecurity::DisableExtensionRemoval is set in expert configurations, context menu entry of 'remove' for installed extensions is also disabled along with the "Remove" button on the dialog. This is the combination of 4 commits from master: 99b7c4f57d7f f09be32d0fcb 99841f1fd2bf 18cf49580846 Change-Id: Ide7b8bcae750b093bcc0a98948845273611cd620 Reviewed-on: https://gerrit.libreoffice.org/38455 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Muhammet Kara <muhammet.kara@pardus.org.tr>
2017-06-07tdf#91820 Add cell style and spreadsheet theme commandYousuf Philips1-1/+66
Change-Id: Ia9a3a4704b5c07e5ae26a290855cf77bd33bcbd1 Reviewed-on: https://gerrit.libreoffice.org/37844 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com> (cherry picked from commit f4c4e407c6731f37769d6ffaaadbf3a07951a594) Reviewed-on: https://gerrit.libreoffice.org/37879 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
2017-06-03tdf#91781 Add list styles and reorganized form controlsYousuf Philips1-2/+17
Change-Id: Idb8241c3b55d0dfaf8338abd9ab601632ac16147 Reviewed-on: https://gerrit.libreoffice.org/37727 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com> (cherry picked from commit adb5cdcf2352d3f1c78645feafc4c270b58b197a) Reviewed-on: https://gerrit.libreoffice.org/37922
2017-06-03Organize accelerators in Impress' View menuYousuf Philips2-7/+7
Change-Id: I7473bea1c14a0523ce7361f55f007c9d6caf522e Reviewed-on: https://gerrit.libreoffice.org/37564 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com> (cherry picked from commit 3c4358e8e605e88e90c01ae6ffce439cf0708356) Reviewed-on: https://gerrit.libreoffice.org/37880
2017-06-03tdf#108291 Make style formatting toolbar not contextualYousuf Philips1-1/+1
Change-Id: Id51ac1b1cc058f20722b01fd8c01d267c9e8d91a Reviewed-on: https://gerrit.libreoffice.org/38340 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com> (cherry picked from commit 9d2c9d9c6fa592d83a5236a4b9626ad2c1e8c408) Reviewed-on: https://gerrit.libreoffice.org/38341 Tested-by: Jenkins <ci@libreoffice.org>
2017-05-31tdf#108056 sw: add UI to disable SubtractFlysAnchoredAtFlys compat optionMiklos Vajna1-0/+6
There is a reason this is off by default, make it a bit more easier for users to not depend this option when they don't actually need it. Change-Id: I21c5b942c6021fa21840779e1a9f53055fbf279f Reviewed-on: https://gerrit.libreoffice.org/38081 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org> (cherry picked from commit f85ded43446b17fbfdd868cc057ba39666d3d7cb) Reviewed-on: https://gerrit.libreoffice.org/38263
2017-05-25tdf#91913 Saving line numbering into settingtagezi1-0/+11
It saves setting of the line numbering for next start Now the line numbering is enabled by default Change-Id: Ib658d417882996eb843fed9b236496fe2fb42166 Reviewed-on: https://gerrit.libreoffice.org/38013 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> (cherry picked from commit 3bdd04cd54a42a98f7f679e749f3da0f164ac18f) Reviewed-on: https://gerrit.libreoffice.org/38031
2017-05-23tdf#107971 - 'Shapes' text is gone from Modify menuNoel Grandin1-0/+5
Regression from commit f5738518a6ff5321d4d35d9bed4a640ae0a6ae9a "remove unhandled SID commands from svx" Change-Id: I78345c14fd899f19fa5134a6ada493e1f151d061 Reviewed-on: https://gerrit.libreoffice.org/37954 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com> (cherry picked from commit 161b42efa95ac353fe0f800b2dea5ac495e8a55a) Reviewed-on: https://gerrit.libreoffice.org/37958
2017-05-18Watermark: Insert watermark commandSzymon Kłos1-0/+8
* added new command .uno:Watermark * if no arguments are provided the dialog is opened where user can enter the text * with provided Text argument the watermark is created * created SfxWatermarkItem to transfer watermark properties * dialog loads current setings * SetClassification use SetWatermark Change-Id: Ifc1319f5aa7c11bb141f8e4b5b9a5088613021c2 Reviewed-on: https://gerrit.libreoffice.org/37599 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
2017-05-17Updated UIHintsIlmari Lauhakangas2-101/+101
Change-Id: I1b0ac87da849073f826f5107f3b5fd165be90e42 Reviewed-on: https://gerrit.libreoffice.org/37662 Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de> Tested-by: Katarina Behrens <Katarina.Behrens@cib.de>
2017-05-15tdf#87674 Ctrl + Shift + M for Default FormattingYousuf Philips1-0/+12
Change-Id: Ia6c9bab57fc7e91aea261faf2df3e4e1f21783cb Reviewed-on: https://gerrit.libreoffice.org/37571 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-05-14Revert "tdf#96444 Replace chr(20) with '%20' in style uno commands"Maxim Monastirsky2-24/+24
This reverts commit 939abe5a79674525ce134637947fe424a7e2332a. This causes styles to not appear as having keyboard shortcuts in Tools > Customize... > Keyboard, and style buttons that were added using tdf#106681 to not have their keyboard shortcuts in their tooltips. Given that the original bug is a local problem in MenuBarManager, I prefer to fix it there, rather than put workarounds all over the place, including those ugly "%20". Change-Id: I797f463df2b37ab69f73f357ab9d120697e0ff33
2017-05-11tdf#107258 Create show/hide all comments toggle button.Gulsah Kose3-19/+11
Created new show/hide all comments button for calc by ShowAnnotations command. Unifyied writer, calc and impress's ShowAnnotations slot. Change-Id: I27149d09ee1763b84258c5e0c890a9628c8874c0 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/36697 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
2017-05-10tdf#86350 Add flip commands to image context menuYousuf Philips1-0/+5
Change-Id: I5485cb6342e5236e2ca13b93923222f1b84f48f0 Reviewed-on: https://gerrit.libreoffice.org/37253 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-05-08tdf#106479 Make edit context menu dispatcher basedMaxim Monastirsky2-2/+68
This allows us to add there any .uno command and also get the icon and keyboard shortcut for it. Use this to add clipboard commands. Change-Id: Ic42c28add7771f322491e8e7d6df052e3c2c8d75 Reviewed-on: https://gerrit.libreoffice.org/37353 Reviewed-by: Maxim Monastirsky <momonasmon@gmail.com> Tested-by: Maxim Monastirsky <momonasmon@gmail.com>
2017-05-05tdf#107649: add TrySystemCredentialsFirst config optionMike Kaganski1-0/+8
This will allow automatically try system credentials for any URI (including unknown) before displaying dialogs. This is intended for corporate enviromnents. Default value of this option is false, keeping current behavior. Change-Id: I96cb18e089134325e1f92f1afdef331975000e3b Reviewed-on: https://gerrit.libreoffice.org/37297 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2017-05-05tdf#95885 Add new toolbar and toggle icons for Cell ProtectionGulsah Kose1-0/+8
Change-Id: Ib0d7f2a8cc07988d27f5cf96e5c57727ad1eca71 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/35218 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
2017-05-04tdf#87674 Remove duplicate shortcuts and add shortcut for new slideYousuf Philips1-14/+2
In Impress, removed 2 duplicate shortcuts for starting a slide presentation and add shortcut for inserting a new slide Change-Id: I86d9d07dd0b84f13309a4eb620135741c8e13a23 Reviewed-on: https://gerrit.libreoffice.org/36647 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-05-04document /italic/ and -strikeout- markupTiagoSantos2-6/+7
added in commit https://gerrit.libreoffice.org/#/c/31076/ former changes verified in: https://bugs.documentfoundation.org/show_bug.cgi?id=83037 Change-Id: I4b5973137edbec7bb430264867bf55b766248e1f Reviewed-on: https://gerrit.libreoffice.org/37127 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
2017-05-04tdf#107573 change label of outline numbering in menu and dialogYousuf Philips1-1/+4
Change-Id: I38334bf726ab617bab390f0c45bb79c387aae424 Reviewed-on: https://gerrit.libreoffice.org/37200 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-05-04Related: rhbz#1447830 ExportHiddenSlides isn't persistent in dialogCaolán McNamara1-0/+7
every time the dialog is run its back to its default setting again unlike the other options Change-Id: Ieb6c94a4ec8670957f9e295acee7114d5c4c6d5a
2017-05-04tdf#96047 Change labels for display mode commandsYousuf Philips1-4/+4
Change-Id: I4eecb9c6d19df0d2f2df4d2618ff7a4a5ce5bb24 Reviewed-on: https://gerrit.libreoffice.org/37180 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-05-02tdf#107455 Fix accelerators in the Slide menuYousuf Philips1-3/+3
Change-Id: I89eae1da902ccb64247eb294450bc300d055ece0 Reviewed-on: https://gerrit.libreoffice.org/37034 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-05-01tdf#79766 Use consistent wording in Asian Layout Kerning optionTakeshi Abe1-1/+1
Change-Id: I4ed78efc82a9dad490930351175dc5d501fdc499 Reviewed-on: https://gerrit.libreoffice.org/37114 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
2017-04-28tdf#105841: Avoid REGRESSION!!!Tor Lillqvist1-7/+1
Let's reinstate the name charade instead. Pitäkää tunkkinne. This reverts commit 5941496601600269296dde3e4ff8b615a8bb45ca. This reverts commit db231633af4667e24281e0be69ab63ad3081fdc3. Change-Id: I7d9890f3bd478bac195c1a7a59ff9822c2c83653
2017-04-27Remove outdated UIHints metacommentsTor Lillqvist1-5/+0
These things haven't been present in the UI for a while (and that is a good thing). Change-Id: I8dbb84060013377469d600dc2faf047fbd199ca9
2017-04-24tdf#84837 Comment submenu icon and remove hide/show all commentsYousuf Philips1-1/+4
Change-Id: Ifa0fd92363a4edc64e312a8b063179ce6ea30dd4 Reviewed-on: https://gerrit.libreoffice.org/36570 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-04-22tdf#107277 add findbar and pagedialog icon to writerandreas kainz2-0/+6
Change-Id: I8a53f99ef9e614fe226ff396ee5258ab192e4c39 Reviewed-on: https://gerrit.libreoffice.org/36806 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com>
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky1-4/+0
Uwinapi is discontinued. Change-Id: I063b4d0d8fab2d60de168e960a63b8181158ac01 Reviewed-on: https://gerrit.libreoffice.org/23198 Reviewed-by: David Ostrovsky <david@ostrovsky.org> Tested-by: David Ostrovsky <david@ostrovsky.org>
2017-04-20tdf#107143 Add delete all comments command.Gulsah Kose1-0/+5
Change-Id: I1375375543172146a27ed4225f584121f9945a8c Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/36623 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
2017-04-20tdf#106781 Style-focused formatting toolbar for writerYousuf Philips1-0/+23
Change-Id: I941c49aa502fa2757bb7f6a1d0cba4d02f00e686 Reviewed-on: https://gerrit.libreoffice.org/36717 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-04-20Settings for not showing Merge Cells dialog and for emptying hidden cellsAndras Timar1-0/+20
By default nothing changes. But users have the possibility to avoid the confusing (?) Merge Cell dialog. Also, when the dialog is disabled, users may want to set the EmptyMergedCells to true, to mimic Excel's behaviour. Change-Id: I9656ae59199bb697c45786dd478379f5c89eb08f Reviewed-on: https://gerrit.libreoffice.org/36679 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Andras Timar <andras.timar@collabora.com>
2017-04-20tdf#107277 add update all icon for writer menuandreas kainz1-0/+3
Change-Id: Iaada61d19c601aa01bba85323e815872feae2c4a Reviewed-on: https://gerrit.libreoffice.org/36705 Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com> Tested-by: Heiko Tietze <tietze.heiko@googlemail.com>
2017-04-18tdf#99493 Set record changes shortcut at module levelYousuf Philips1-6/+18
Change-Id: I9d8b07d0f999329a8963a9ebc17acc77e0444c63 Reviewed-on: https://gerrit.libreoffice.org/36583 Reviewed-by: Yousuf Philips <philipz85@hotmail.com> Tested-by: Yousuf Philips <philipz85@hotmail.com>
2017-04-18tdf#107158 Groupedbar variant of the Notebookbar for Writerandreas kainz1-0/+22
patch 2 missed the patch 1 stuff so now everything should be there Change-Id: Ia2d35eb3d3791af4be683baca23635d8dc5e0dd1 Reviewed-on: https://gerrit.libreoffice.org/36546 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Heiko Tietze <tietze.heiko@googlemail.com>
2017-04-18tdf#106562: Add back H accelerator for Character menu itemAron Budea1-1/+1
Now Format -> Character can be accessed via accelerator again. Removed in 58a825b4d047c0f99d4f9a193c97af423b23fb97 presumably accidentally. Change-Id: If699e026fc3eccac09f3898b9c2b3426f6fa7c97 Reviewed-on: https://gerrit.libreoffice.org/35418 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Yousuf Philips <philipz85@hotmail.com>
2017-04-11tdf#84837 Add Show/Hide all comments commands to Calc.Gulsah Kose1-0/+10
Change-Id: I1e38335ff1269d0d464f03d23bfc5eba6e3b1532 Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/35020 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
2017-04-10add newwindow icon in the ui and the breeze icon for newwindowandreas kainz1-0/+3
Change-Id: Ia252ed209752e04cb3ce3a6cd7d3d5266f931cdb Reviewed-on: https://gerrit.libreoffice.org/36283 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
2017-04-07tdf#95386 More Help Agent cleanupGabor Kelemen1-37/+0
These configuration settings are good to go Change-Id: Id0867c52c46435d416703bc822ef14ffad2ea9f6 Reviewed-on: https://gerrit.libreoffice.org/36171 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
2017-04-06tdf#55236 save settings of CSV export dialogBernhard Widl1-0/+54
Change-Id: I250e2d8d9d7b7b806a60fb2779321685e84b44bf Reviewed-on: https://gerrit.libreoffice.org/36144 Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de> Tested-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2017-04-06tdf#104706 Enable icon for Clear Direct Formatting commandYousuf Philips1-0/+3
Change-Id: Iba3cbd8148794ac984a91d22d33cdec1f4453c5f Reviewed-on: https://gerrit.libreoffice.org/36221 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
2017-04-06tdf#100108 Layout labels not consistentThomas Beck1-12/+12
Labels in layout menu are now consistent with the names of the tooltips shown in the layout tab Change-Id: Ie3dd13af03fcd8b29cfb5e9b6e8fe43b1668bc94 Reviewed-on: https://gerrit.libreoffice.org/36196 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
2017-04-05tdf#98604 Added requested panels to sidebarThomas Beck1-0/+4
Added Text and Paragraph parameter panels to Sidebar if a line is drawn Change-Id: I3a6dc3b34671dbf75084048c39fdbc040cf27d76 Reviewed-on: https://gerrit.libreoffice.org/36139 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>