Ignore G1 'R' and 'H' from reprap

supermerill/SuperSlicer#1391
This commit is contained in:
supermerill 2021-07-05 19:39:28 +02:00
parent 8d91d70448
commit 34b8d0634a

View File

@ -1841,6 +1841,10 @@ void GCodeProcessor::process_G1(const GCodeReader::GCodeLine& line)
++m_g1_line_id; ++m_g1_line_id;
//reprap thingy, ignore
if (line.has('R') || line.has('H'))
return;
// enable processing of lines M201/M203/M204/M205 // enable processing of lines M201/M203/M204/M205
m_time_processor.machine_envelope_processing_enabled = true; m_time_processor.machine_envelope_processing_enabled = true;