diff --git a/src/components/inputs/MacroButton.vue b/src/components/inputs/MacroButton.vue index 89586f774..873d4cb21 100644 --- a/src/components/inputs/MacroButton.vue +++ b/src/components/inputs/MacroButton.vue @@ -59,7 +59,7 @@ {{ mdiMenuDown }} - + - - - + + + + + + + + + + + + + - - diff --git a/src/components/panels/ExtruderSettings/FirmwareRetractionSettings.vue b/src/components/panels/ExtruderSettings/FirmwareRetractionSettings.vue deleted file mode 100644 index 51223065c..000000000 --- a/src/components/panels/ExtruderSettings/FirmwareRetractionSettings.vue +++ /dev/null @@ -1,152 +0,0 @@ - - - diff --git a/src/components/panels/ExtruderSettings/PressureAdvanceSettings.vue b/src/components/panels/ExtruderSettings/PressureAdvanceSettings.vue deleted file mode 100644 index b7f2a1921..000000000 --- a/src/components/panels/ExtruderSettings/PressureAdvanceSettings.vue +++ /dev/null @@ -1,133 +0,0 @@ - - - diff --git a/src/store/printer/getters.ts b/src/store/printer/getters.ts index d9d330479..3da6dcbc9 100644 --- a/src/store/printer/getters.ts +++ b/src/store/printer/getters.ts @@ -772,28 +772,6 @@ export const getters: GetterTree = { return output }, - getToolchangeMacros: (state, getters) => { - const macros = getters['getMacros'] - const tools: PrinterStateToolchangeMacro[] = [] - - macros - .filter((macro: any) => macro.name.toUpperCase().match(/^T\d+/)) - .forEach((macro: any) => - tools.push({ - name: macro.name, - active: macro.variables.active ?? false, - color: macro.variables.color ?? macro.variables.colour ?? null, - }) - ) - - return tools.sort((a, b) => { - const numberA = parseInt(a.name.slice(1)) - const numberB = parseInt(b.name.slice(1)) - - return numberA - numberB - }) - }, - getKinematics: (state) => { if (!state.configfile?.settings?.printer) return false