diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-12-16 12:10:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-16 12:10:36 -0500 |
commit | 5b76c4239f0faaa8a9112a84a687d0668d7d52a0 (patch) | |
tree | e12c690662795eb21ca29e94784d2f2d9dc7fe7a | |
parent | c9baa5b9fc7af488b7fec8ce991f6059bb47df4f (diff) | |
download | servo-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.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 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; |