mirror of
				https://github.com/SoftFever/OrcaSlicer.git
				synced 2025-11-02 20:51:23 -07:00 
			
		
		
		
	Bugfix: fan wasn't turned on for bridges when vibration limit or another internal post-processor was enabled. Includes regression test. #1533
This commit is contained in:
		
							parent
							
								
									e403dc16ae
								
							
						
					
					
						commit
						c180a2de57
					
				
					 2 changed files with 38 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -18,11 +18,11 @@ sub parse {
 | 
			
		|||
        print "$raw_line\n" if $Verbose || $ENV{SLIC3R_TESTS_GCODE};
 | 
			
		||||
        my $line = $raw_line;
 | 
			
		||||
        $line =~ s/\s*;(.*)//; # strip comment
 | 
			
		||||
        next if $line eq '';
 | 
			
		||||
        my %info = (comment => $1, raw => $raw_line);
 | 
			
		||||
        
 | 
			
		||||
        # parse command
 | 
			
		||||
        my ($command, @args) = split /\s+/, $line;
 | 
			
		||||
        $command //= '';
 | 
			
		||||
        my %args = map { /([A-Z])(.*)/; ($1 => $2) } @args;
 | 
			
		||||
        
 | 
			
		||||
        # check motion
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue