aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2019-12-16 12:10:36 -0500
committerGitHub <noreply@github.com>2019-12-16 12:10:36 -0500
commit5b76c4239f0faaa8a9112a84a687d0668d7d52a0 (patch)
treee12c690662795eb21ca29e94784d2f2d9dc7fe7a
parentc9baa5b9fc7af488b7fec8ce991f6059bb47df4f (diff)
downloadservo-jdm-patch-28.tar.gz
servo-jdm-patch-28.zip
Enable devtools by default on hololens.jdm-patch-28
-rw-r--r--support/hololens/ServoApp/ServoControl/Servo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/hololens/ServoApp/ServoControl/Servo.cpp b/support/hololens/ServoApp/ServoControl/Servo.cpp
index 6a3a93cc34b..224db11706f 100644
--- a/support/hololens/ServoApp/ServoControl/Servo.cpp
+++ b/support/hololens/ServoApp/ServoControl/Servo.cpp
@@ -72,7 +72,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";
+ hstring defaultPrefs = L" --pref dom.webxr.enabled --devtools=6000";
o.args = *hstring2char(args + defaultPrefs);
o.url = *hstring2char(url);
o.width = mWindowWidth;