diff options
author | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-02-09 12:52:52 +0100 |
---|---|---|
committer | Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de> | 2018-03-06 15:45:28 +0100 |
commit | acf0bad4e2b8c3c43aaaee8312c8a61d3552fcc2 (patch) | |
tree | 4650737dd242e2fef7322e6fc1c8ec2f02987a33 /sc/uiconfig/scalc/popupmenu | |
parent | 2b69156c43261ceae55eb4d3b644c4c2d73231ba (diff) |
tdf#114552 Add a third anchor type for calc graphics
This allows to have two cell anchored types:
* Only cell anchored (moves with the cell when sorting etc)
* Cell anchored, also resizes with the cell
Beforehand, all cell anchored images would resize with the cell,
which was often not what users expected.
The new default (when inserting images) is now that inserted images
are only anchored to the cell, but don't resize with the cell.
This makes use of the ODF elements table:end-cell-address, table:end-x, table:end-y.
When images should resize with the cell, the end address is written
(it has always been written earlier, so documents would still import correctly).
If not, they are omitted.
Also implements xlsx import & export
Change-Id: I5f96242f88943ed77a0fd12b7f39b444e1380df7
Reviewed-on: https://gerrit.libreoffice.org/49490
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'sc/uiconfig/scalc/popupmenu')
-rw-r--r-- | sc/uiconfig/scalc/popupmenu/anchor.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sc/uiconfig/scalc/popupmenu/anchor.xml b/sc/uiconfig/scalc/popupmenu/anchor.xml index c269bef3ad16..6268cd0b9ae8 100644 --- a/sc/uiconfig/scalc/popupmenu/anchor.xml +++ b/sc/uiconfig/scalc/popupmenu/anchor.xml @@ -8,6 +8,7 @@ * --> <menu:menupopup xmlns:menu="http://openoffice.org/2001/menu"> - <menu:menuitem menu:id=".uno:SetAnchorToPage" menu:style="radio"/> <menu:menuitem menu:id=".uno:SetAnchorToCell" menu:style="radio"/> + <menu:menuitem menu:id=".uno:SetAnchorToCellResize" menu:style="radio"/> + <menu:menuitem menu:id=".uno:SetAnchorToPage" menu:style="radio"/> </menu:menupopup> |