diff options
author | László Németh <nemeth@numbertext.org> | 2019-12-16 13:50:25 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2019-12-17 11:50:48 +0100 |
commit | 7efae60f3625a58f8a617c80f2a55a695fbaef36 (patch) | |
tree | ccea50e1f58d44dc93d1c5ca4f1a116ca46d5b04 /sw/uiconfig | |
parent | dfcfdf47b5da6a11b2c3118a0f63cc48c10c2cd7 (diff) |
tdf#64902 Writer table: Paste Special->Rows Above
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>
Diffstat (limited to 'sw/uiconfig')
-rw-r--r-- | sw/uiconfig/swriter/menubar/menubar.xml | 2 | ||||
-rw-r--r-- | sw/uiconfig/swriter/popupmenu/table.xml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sw/uiconfig/swriter/menubar/menubar.xml b/sw/uiconfig/swriter/menubar/menubar.xml index 77e1ebae5f57..bdfd44675517 100644 --- a/sw/uiconfig/swriter/menubar/menubar.xml +++ b/sw/uiconfig/swriter/menubar/menubar.xml @@ -106,6 +106,8 @@ <menu:menuitem menu:id=".uno:PasteUnformatted"/> <menu:menuitem menu:id=".uno:PasteSpecial"/> <menu:menuitem menu:id=".uno:PasteNestedTable"/> + <menu:menuitem menu:id=".uno:PasteRowsBefore"/> + <menu:menuitem menu:id=".uno:PasteColumnsBefore"/> </menu:menupopup> </menu:menu> <menu:menuseparator/> diff --git a/sw/uiconfig/swriter/popupmenu/table.xml b/sw/uiconfig/swriter/popupmenu/table.xml index 4baf20af019d..2a302ef1a2cd 100644 --- a/sw/uiconfig/swriter/popupmenu/table.xml +++ b/sw/uiconfig/swriter/popupmenu/table.xml @@ -14,6 +14,8 @@ <menu:menu menu:id=".uno:PasteSpecialMenu"> <menu:menupopup> <menu:menuitem menu:id=".uno:PasteNestedTable"/> + <menu:menuitem menu:id=".uno:PasteRowsBefore"/> + <menu:menuitem menu:id=".uno:PasteColumnsBefore"/> <menu:menuitem menu:id=".uno:PasteUnformatted"/> <menu:menuitem menu:id=".uno:PasteSpecial"/> </menu:menupopup> |