diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-03-04 15:32:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-04 15:32:52 -0500 |
commit | 1898b7c59f0e0a944fd4f500c488e24bb00f69ed (patch) | |
tree | 8709a9cca83a515384569a0ade6de62f2807f020 | |
parent | 3749eb53971b688b855d6b1850f41b4c346cd2da (diff) | |
download | servo-1898b7c59f0e0a944fd4f500c488e24bb00f69ed.tar.gz servo-1898b7c59f0e0a944fd4f500c488e24bb00f69ed.zip |
Disable devtools for HoloLens.
-rw-r--r-- | support/hololens/ServoApp/ServoControl/Servo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/hololens/ServoApp/ServoControl/Servo.cpp b/support/hololens/ServoApp/ServoControl/Servo.cpp index 8cebc5b1379..0db1bb93032 100644 --- a/support/hololens/ServoApp/ServoControl/Servo.cpp +++ b/support/hololens/ServoApp/ServoControl/Servo.cpp @@ -92,7 +92,7 @@ Servo::Servo(hstring url, hstring args, GLsizei width, GLsizei height, : mWindowHeight(height), mWindowWidth(width), mDelegate(aDelegate) { capi::CInitOptions o; - hstring defaultPrefs = L" --pref dom.webxr.enabled --devtools=6000"; + hstring defaultPrefs = L" --pref dom.webxr.enabled"; o.args = *hstring2char(args + defaultPrefs); o.url = *hstring2char(url); o.width = mWindowWidth; |