bugfix: min_extrude_temp from config file (extrude/retract buttons on dashboard)
Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
@@ -54,7 +54,6 @@
|
||||
},
|
||||
computed: {
|
||||
...mapState({
|
||||
config: state => state.config,
|
||||
loadings: state => state.loadings,
|
||||
printer_state: state => state.printer.print_stats.state,
|
||||
}),
|
||||
|
@@ -267,8 +267,8 @@ export default {
|
||||
let extruderName = state.printer.toolhead.extruder;
|
||||
extruder.name = extruderName;
|
||||
|
||||
if (state.config[extruderName]) {
|
||||
extruder.config = state.config[extruderName];
|
||||
if (state.printer.configfile.config[extruderName]) {
|
||||
extruder.config = state.printer.configfile.config[extruderName];
|
||||
}
|
||||
|
||||
if (state.printer[extruderName]) {
|
||||
|
Reference in New Issue
Block a user