summaryrefslogtreecommitdiffstats
path: root/scripts/unocommands.py
diff options
context:
space:
mode:
authorHenry Castro <hcastro@collabora.com>2019-03-11 14:27:47 -0400
committerHenry Castro <hcastro@collabora.com>2019-03-11 14:51:56 -0400
commitc1ba96f951661ee047af9fabe20ce00a1527acfe (patch)
treeb96922821f7ec3dc22a4d89b4d337d5a6ef338d5 /scripts/unocommands.py
parentAlways show cursor header (diff)
downloadonline-c1ba96f951661ee047af9fabe20ce00a1527acfe.tar.gz
online-c1ba96f951661ee047af9fabe20ce00a1527acfe.zip
loleaflet: move toolbar.js to src/control directory
Simplify building loleaflet. TODO. Convert to L.Control.Toolbar Change-Id: I6abedd19caa6f0c22267c661e67480507dcd8336
Diffstat (limited to 'scripts/unocommands.py')
-rwxr-xr-xscripts/unocommands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/unocommands.py b/scripts/unocommands.py
index 27fca0d846..df29ef8e50 100755
--- a/scripts/unocommands.py
+++ b/scripts/unocommands.py
@@ -122,7 +122,7 @@ def extractToolbarCommands(path):
commands = []
# extract from the menu specifications
- f = open(path + '/loleaflet/js/toolbar.js', 'r')
+ f = open(path + '/loleaflet/src/control/toolbar.js', 'r')
for line in f:
if line.find("_UNO(") >= 0:
commands += commandFromMenuLine(line)