Follow-up of 86d7e1fb90 -> Custom gcode validation in Filament settings tab

This commit is contained in:
enricoturri1966 2021-02-22 08:39:36 +01:00
parent 9b0b0f5e27
commit 92b1302a08
3 changed files with 61 additions and 22 deletions

View file

@ -412,6 +412,10 @@ public:
void update() override;
void clear_pages() override;
bool supports_printer_technology(const PrinterTechnology tech) override { return tech == ptFFF; }
#if ENABLE_VALIDATE_CUSTOM_GCODE
bool validate_custom_gcodes() const;
#endif // ENABLE_VALIDATE_CUSTOM_GCODE
};
class TabPrinter : public Tab