mirror of
				https://github.com/tmux/tmux.git
				synced 2025-11-03 16:46:18 +00:00 
			
		
		
		
	Another minor fix - do not draw positions that are under the popup with
spaces, from Anindya Mukherjee. Also a typo fix from Linus Arver.
This commit is contained in:
		
							
								
								
									
										10
									
								
								tty.c
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								tty.c
									
									
									
									
									
								
							@@ -1463,9 +1463,15 @@ tty_draw_line(struct tty *tty, struct screen *s, u_int px, u_int py, u_int nx,
 | 
			
		||||
				tty_attributes(tty, &last, defaults, palette);
 | 
			
		||||
				tty_cursor(tty, atx + ux, aty);
 | 
			
		||||
				for (j = 0; j < gcp->data.width; j++) {
 | 
			
		||||
					if (ux + j > nx)
 | 
			
		||||
					if (ux > nx)
 | 
			
		||||
						break;
 | 
			
		||||
					tty_putc(tty, ' ');
 | 
			
		||||
					if (tty_check_overlay(tty, atx + ux,
 | 
			
		||||
					    aty))
 | 
			
		||||
						tty_putc(tty, ' ');
 | 
			
		||||
					else {
 | 
			
		||||
						tty_cursor(tty, atx + ux + 1,
 | 
			
		||||
						    aty);
 | 
			
		||||
					}
 | 
			
		||||
					ux++;
 | 
			
		||||
				}
 | 
			
		||||
			}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user