Add warning on debugger tour section in web
This commit is contained in:
		
							parent
							
								
									b2721661f5
								
							
						
					
					
						commit
						5b8f6948bb
					
				| @ -622,11 +622,19 @@ impl<'a> Step { | |||||||
|                 "Give it a shot! Check the following checkbox to be able to \ |                 "Give it a shot! Check the following checkbox to be able to \ | ||||||
|                  see element boundaries.",
 |                  see element boundaries.",
 | ||||||
|             )) |             )) | ||||||
|             .push(Checkbox::new( |             .push(if cfg!(target_arch = "wasm32") { | ||||||
|  |                 Element::new( | ||||||
|  |                     Text::new("Not available on web yet!") | ||||||
|  |                         .color([0.7, 0.7, 0.7]) | ||||||
|  |                         .horizontal_alignment(HorizontalAlignment::Center), | ||||||
|  |                 ) | ||||||
|  |             } else { | ||||||
|  |                 Element::new(Checkbox::new( | ||||||
|                     debug, |                     debug, | ||||||
|                     "Explain layout", |                     "Explain layout", | ||||||
|                     StepMessage::DebugToggled, |                     StepMessage::DebugToggled, | ||||||
|                 )) |                 )) | ||||||
|  |             }) | ||||||
|             .push(Text::new("Feel free to go back and take a look.")) |             .push(Text::new("Feel free to go back and take a look.")) | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user