Changed comments referring to panelnavigate.vue

This commit is contained in:
Chish36 2025-08-11 10:40:37 +01:00
parent 1d923798e6
commit 8ffc4e23a7

View file

@ -262,7 +262,7 @@ export default {
event.target.classList.contains("scrollTarget")
) {
var z_rel = event.deltaY / 100;
// Emit a signal to move, acted on by panelNavigate.vue
// Emit a signal to move, acted on by panelControl.vue
this.$root.$emit("globalMoveStepEvent", 0, 0, z_rel, false);
}
},
@ -289,7 +289,7 @@ export default {
y_rel = y_rel - 1;
}
// Make a position request
// Emit a signal to move, acted on by panelNavigate.vue
// Emit a signal to move, acted on by panelControl.vue
this.$root.$emit("globalMoveStepEvent", x_rel, y_rel, z_rel);
}
}