Removed debug counter on session input
This commit is contained in:
		
							parent
							
								
									839570fc57
								
							
						
					
					
						commit
						4b264c5da8
					
				
							
								
								
									
										15
									
								
								src/main.rs
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								src/main.rs
									
									
									
									
									
								
							| @ -224,15 +224,12 @@ impl App { | ||||
|             }); | ||||
|         frame.render_widget(user_row, rows[0]); | ||||
| 
 | ||||
|         let session_row = Line::from(format!( | ||||
|             "Session: {} {}", | ||||
|             self.session_input.value(), | ||||
|             self.session_input.state | ||||
|         )) | ||||
|         .style(match self.focus { | ||||
|             Focus::Session => Color::White, | ||||
|             _ => Color::Gray, | ||||
|         }); | ||||
|         let session_row = Line::from(format!("Session: {}", self.session_input.value(),)).style( | ||||
|             match self.focus { | ||||
|                 Focus::Session => Color::White, | ||||
|                 _ => Color::Gray, | ||||
|             }, | ||||
|         ); | ||||
|         frame.render_widget(session_row, rows[2]); | ||||
| 
 | ||||
|         let password_row = Line::from(format!( | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Jan-Bulthuis
						Jan-Bulthuis