From 6f271a4ad5c770c33bb2a56b0b818153cce3eea2 Mon Sep 17 00:00:00 2001 From: Rash419 Date: Tue, 11 May 2021 11:36:36 +0530 Subject: [PATCH] fix:added chart option in insertion-wizard of writer and impress mobile Signed-off-by: Rash419 Change-Id: Id52b5fcc0f2d892ac07c7c1327987397ccc3fd96 --- loleaflet/src/control/Control.Menubar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loleaflet/src/control/Control.Menubar.js b/loleaflet/src/control/Control.Menubar.js index 2460ed0f1..c065496b6 100644 --- a/loleaflet/src/control/Control.Menubar.js +++ b/loleaflet/src/control/Control.Menubar.js @@ -932,6 +932,7 @@ L.Control.Menubar = L.Control.extend({ name: _UNO('.uno:InsertMenu', 'text'), id: 'insert', type: 'menu', menu: [ {name: _('Local Image...'), id: 'insertgraphic', type: 'action'}, {name: _UNO('.uno:InsertGraphic', 'text'), id: 'insertgraphicremote', type: 'action'}, + {uno: '.uno:InsertObjectChart'}, {name: _UNO('.uno:InsertAnnotation', 'text'), id: 'insertcomment', type: 'action'}, {name: _UNO('.uno:TableMenu'), id: 'inserttable', type: 'action'}, {type: 'separator'}, @@ -987,6 +988,7 @@ L.Control.Menubar = L.Control.extend({ name: _UNO('.uno:InsertMenu', 'presentation'), id: 'insert', type: 'menu', menu: [ {name: _('Local Image...'), id: 'insertgraphic', type: 'action'}, {name: _UNO('.uno:InsertGraphic', 'presentation'), id: 'insertgraphicremote', type: 'action'}, + {uno: '.uno:InsertObjectChart'}, {name: _UNO('.uno:InsertAnnotation', 'presentation'), id: 'insertcomment', type: 'action'}, {name: _UNO('.uno:TableMenu'), id: 'inserttable', type: 'action'}, {name: _UNO('.uno:HyperlinkDialog'), id: 'inserthyperlink', type: 'action'},