diff options
-rw-r--r-- | python/servo/package_commands.py | 2 | ||||
-rw-r--r-- | python/servo/post_build_commands.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index 0c44fdaf3dc..434e9113bf7 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -90,7 +90,7 @@ class PackageCommands(CommandBase): servo_args = ['-w', '-b', '--pref', 'dom.mozbrowser.enabled', '--pref', 'dom.forcetouch.enabled', - '--pref', 'shell.builtin-key-shortcuts=false', + '--pref', 'shell.builtin-key-shortcuts.enabled=false', path.join(browserhtml_path, 'out', 'index.html')] runservo = os.open(dir_to_package + 'runservo.sh', os.O_WRONLY | os.O_CREAT, int("0755", 8)) diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 67ec4662fdd..733ec665cd6 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -114,7 +114,7 @@ class PostBuildCommands(CommandBase): args = args + ['-w', '--pref', 'dom.mozbrowser.enabled', '--pref', 'dom.forcetouch.enabled', - '--pref', 'shell.builtin-key-shortcuts=false', + '--pref', 'shell.builtin-key-shortcuts.enabled=false', path.join(browserhtml_path, 'out', 'index.html')] # Borrowed and modified from: |