From 1898b7c59f0e0a944fd4f500c488e24bb00f69ed Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Wed, 4 Mar 2020 15:32:52 -0500 Subject: [PATCH] Disable devtools for HoloLens. --- support/hololens/ServoApp/ServoControl/Servo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;