loleaflet/src/control/Control.Menubar.js | 2 ++ 1 file changed, 2 insertions(+)
New commits: commit 1a24ee3797089032e9e90d84b949a6bda9f5675a Author: Aron Budea <[email protected]> Date: Thu Oct 26 01:27:57 2017 +0200 Add 'Repair' menu to spreadsheet/presentation. Change-Id: I7651418c79c711940438ada53d64970e7674d077 Reviewed-on: https://gerrit.libreoffice.org/43859 Reviewed-by: Jan Holesovsky <[email protected]> Tested-by: Jan Holesovsky <[email protected]> diff --git a/loleaflet/src/control/Control.Menubar.js b/loleaflet/src/control/Control.Menubar.js index 8d205934..7576b524 100644 --- a/loleaflet/src/control/Control.Menubar.js +++ b/loleaflet/src/control/Control.Menubar.js @@ -203,6 +203,7 @@ L.Control.Menubar = L.Control.extend({ {name: _('Edit'), type: 'menu', menu: [ {name: _('Undo'), type: 'unocommand', uno: '.uno:Undo'}, {name: _('Redo'), type: 'unocommand', uno: '.uno:Redo'}, + {name: _('Repair'), id: 'repair', type: 'action'}, {type: 'separator'}, {name: _('Cut'), type: 'unocommand', uno: '.uno:Cut'}, {name: _('Copy'), type: 'unocommand', uno: '.uno:Copy'}, @@ -268,6 +269,7 @@ L.Control.Menubar = L.Control.extend({ {name: _('Edit'), type: 'menu', menu: [ {name: _('Undo'), type: 'unocommand', uno: '.uno:Undo'}, {name: _('Redo'), type: 'unocommand', uno: '.uno:Redo'}, + {name: _('Repair'), id: 'repair', type: 'action'}, {type: 'separator'}, {name: _('Cut'), type: 'unocommand', uno: '.uno:Cut'}, {name: _('Copy'), type: 'unocommand', uno: '.uno:Copy'}, _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
