Hello. I have a question about lcd menu. How can I change menu item visibility and update it on LCD? for example I go to SD Card and click on some file. to start a print I need to go back and open files list again to see Start print option. Cow can I make it visible without this, just click on file and see Start print apear on top?
I think the only ‘user fix’ would be to make the ‘start print’ entry permanently visible by removing the file check on enable.
so instead of the default:
[menu __main __sdcard __start]
type: command
enable: {('virtual_sdcard' in printer) and printer.virtual_sdcard.file_path and not printer.virtual_sdcard.is_active}
name: Start printing
gcode: M24
I am going to change to:
[menu __main __sdcard __start]
type: command
enable: {('virtual_sdcard' in printer) and not printer.virtual_sdcard.is_active}
name: Start printing
gcode: M24