mirror of
				https://github.com/hannobraun/Fornjot
				synced 2025-11-03 21:57:22 +00:00 
			
		
		
		
	Make name of variable more explicit
This commit is contained in:
		
							parent
							
								
									a63ded757e
								
							
						
					
					
						commit
						3764226998
					
				@ -78,7 +78,7 @@ impl TextRenderer {
 | 
				
			|||||||
            },
 | 
					            },
 | 
				
			||||||
        );
 | 
					        );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        for (op, selected, indent) in operations.operations() {
 | 
					        for (op, selected, indent_level) in operations.operations() {
 | 
				
			||||||
            let mut attrs = glyphon::Attrs::new();
 | 
					            let mut attrs = glyphon::Attrs::new();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if selected {
 | 
					            if selected {
 | 
				
			||||||
@ -87,7 +87,7 @@ impl TextRenderer {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
            let mut line = String::new();
 | 
					            let mut line = String::new();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            for _ in 0..indent {
 | 
					            for _ in 0..indent_level {
 | 
				
			||||||
                write!(line, "\t")?;
 | 
					                write!(line, "\t")?;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user