diff --git a/scripts/system/assets/images/tools/hmd-switch-01.svg b/scripts/system/assets/images/tools/hmd-switch-01.svg
index 15ecb02b6b..31389d355c 100644
--- a/scripts/system/assets/images/tools/hmd-switch-01.svg
+++ b/scripts/system/assets/images/tools/hmd-switch-01.svg
@@ -4,99 +4,121 @@
viewBox="0 0 50 150" style="enable-background:new 0 0 50 150;" xml:space="preserve">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
diff --git a/scripts/system/edit.js b/scripts/system/edit.js
index afbc679ec4..38d596f83e 100644
--- a/scripts/system/edit.js
+++ b/scripts/system/edit.js
@@ -181,7 +181,7 @@ var toolBar = (function() {
function initialize() {
toolBar = new ToolBar(0, 0, ToolBar.HORIZONTAL, "highfidelity.edit.toolbar", function(windowDimensions, toolbar) {
return {
- x: windowDimensions.x / 2,
+ x: (windowDimensions.x / 2) + (Tool.IMAGE_WIDTH * 2),
y: windowDimensions.y
};
}, {
diff --git a/scripts/system/examples.js b/scripts/system/examples.js
index 9d33e473af..6f4268182c 100644
--- a/scripts/system/examples.js
+++ b/scripts/system/examples.js
@@ -60,7 +60,7 @@ var toolBar = (function() {
function initialize() {
toolBar = new ToolBar(0, 0, ToolBar.HORIZONTAL, "highfidelity.examples.toolbar", function(windowDimensions, toolbar) {
return {
- x: windowDimensions.x / 2,
+ x: (windowDimensions.x / 2) + (Tool.IMAGE_WIDTH * 2),
y: windowDimensions.y
};
}, {
@@ -135,4 +135,4 @@ var toolBar = (function() {
}());
Controller.mousePressEvent.connect(toolBar.mousePressEvent)
-Script.scriptEnding.connect(toolBar.cleanup);
\ No newline at end of file
+Script.scriptEnding.connect(toolBar.cleanup);
diff --git a/scripts/system/goto.js b/scripts/system/goto.js
index 75d9829905..00b5e912c0 100644
--- a/scripts/system/goto.js
+++ b/scripts/system/goto.js
@@ -13,7 +13,7 @@ Script.include("libraries/toolBars.js");
function initialPosition(windowDimensions, toolbar) {
return {
- x: windowDimensions.x / 2 - Tool.IMAGE_WIDTH,
+ x: (windowDimensions.x / 2) - (Tool.IMAGE_WIDTH * 1),
y: windowDimensions.y
};
}
diff --git a/scripts/system/hmd.js b/scripts/system/hmd.js
index 277af68315..8b91e45676 100644
--- a/scripts/system/hmd.js
+++ b/scripts/system/hmd.js
@@ -22,7 +22,7 @@ var desktopMenuItemName = "Desktop";
function initialPosition(windowDimensions, toolbar) {
return {
- x: windowDimensions.x / 2 + (2 * Tool.IMAGE_WIDTH),
+ x: (windowDimensions.x / 2) - (Tool.IMAGE_WIDTH * 2.5),
y: windowDimensions.y
};
}